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

  1. <template>
  2. <div id="book">
  3. <div class="top-bg"></div>
  4. <div class="online-active">
  5. <img src="~@/assets/images/code.png" alt="" />
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. // import { bookListCrud } from './mixins/booklist.js'
  11. export default {
  12. name: 'OnlineBookSelection',
  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>