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

31 lines
628 B

  1. <template>
  2. <div id="bookshelf">
  3. <HeaderTop />
  4. <!-- <div class="top-bg" /> -->
  5. <div class="bookshelf-header" style="height:120px">
  6. <router-link to="/">
  7. <span class="icon iconfont icon-l">&#xe631;</span>
  8. </router-link>
  9. <h2>作者推荐</h2>
  10. </div>
  11. <div class="book-main">
  12. <!-- -->
  13. </div>
  14. </div>
  15. </template>
  16. <script>
  17. import HeaderTop from '@/views/module/headerTop.vue'
  18. export default {
  19. name: 'AuthorRecommend',
  20. components: {
  21. HeaderTop
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. @import "~@/assets/styles/index.scss";
  27. </style>