大数据展示系统-前端
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

  1. <template>
  2. <div id="bookshelf">
  3. <div class="bookshelf-header" style="height:120px">
  4. <router-link to="/">
  5. <span class="icon iconfont icon-l">&#xe631;</span>
  6. </router-link>
  7. <h2>新书推荐</h2>
  8. </div>
  9. <BookList />
  10. </div>
  11. </template>
  12. <script>
  13. import BookList from '@/views/module/bookList.vue'
  14. import { bookListCrud } from './mixins/booklist.js'
  15. export default {
  16. name: 'NewBook',
  17. components: { BookList },
  18. mixins: [bookListCrud],
  19. data() {
  20. return {
  21. }
  22. },
  23. created() {
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. @import "~@/assets/styles/index.scss";
  31. </style>