viewStores.vue 470 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <uni-check-list :listData="list" types="views"></uni-check-list>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. list: [
  9. {
  10. id: '1232',
  11. name: '爱的街坊邻居爱上了对方加拉附件爱的街坊邻居爱上了对方加拉附件',
  12. },
  13. {
  14. id: '2223',
  15. name: 'banner',
  16. },
  17. {
  18. id: '3333',
  19. name: 'orange',
  20. }
  21. ],
  22. }
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style>
  29. </style>