大数据展示系统-前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

33 lines
669 B

<template>
<div id="bookshelf">
<div class="bookshelf-header" style="height:120px">
<router-link to="/">
<span class="icon iconfont icon-l">&#xe631;</span>
</router-link>
<h2>新书推荐</h2>
</div>
<BookList />
</div>
</template>
<script>
import BookList from '@/views/module/bookList.vue'
import { bookListCrud } from './mixins/booklist.js'
export default {
name: 'NewBook',
components: { BookList },
mixins: [bookListCrud],
data() {
return {
}
},
created() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
@import "~@/assets/styles/index.scss";
</style>