阅行客电子档案
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.

28 lines
411 B

  1. <template>
  2. <div>
  3. <CollectModule :is-recycle="isRecycle" />
  4. </div>
  5. </template>
  6. <script>
  7. import CollectModule from '../collectionLibrary/index'
  8. export default {
  9. name: 'Recycled',
  10. components: { CollectModule },
  11. data() {
  12. return {
  13. isRecycle: true
  14. }
  15. },
  16. computed: {
  17. },
  18. created() {
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style lang='scss' scoped>
  25. </style>