blob: cd431eeb275b1ce05e10573360d9d8947f0902c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import Checkbox from '../checkbox/checkbox.js'
const SelectableList = {
components: {
Checkbox
},
props: ['checked'],
data () {
},
computed: {
},
methods: {
}
}
export default SelectableList
|