123456789101112131415161718192021222324252627282930313233 |
- <template>
- <uni-check-list :listData="list" types="views"></uni-check-list>
- </template>
- <script>
- export default {
- data() {
- return {
- list: [
- {
- id: '1232',
- name: '爱的街坊邻居爱上了对方加拉附件爱的街坊邻居爱上了对方加拉附件',
- },
- {
- id: '2223',
- name: 'banner',
- },
- {
- id: '3333',
- name: 'orange',
- }
- ],
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|