演示项目-图书馆
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.

29 lines
557 B

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