forked from mirrors/amputoma-fe
15 lines
217 B
JavaScript
15 lines
217 B
JavaScript
import Checkbox from '../checkbox/checkbox.js'
|
|
|
|
const SelectableList = {
|
|
components: {
|
|
Checkbox
|
|
},
|
|
props: {
|
|
items: {
|
|
type: Array,
|
|
default: () => []
|
|
}
|
|
}
|
|
}
|
|
|
|
export default SelectableList
|