blob: 138e63ab6c82b3665c1b28aa70f324f26af39029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import Checkbox from '../checkbox/checkbox.js'
const SelectableList = {
components: {
Checkbox
},
props: {
items: {
type: Array,
default: () => []
}
}
}
export default SelectableList
|