puppyoma-fe/src/components/selectable_list/selectable_list.js
2019-04-17 11:32:48 -04:00

15 lines
217 B
JavaScript

import Checkbox from '../checkbox/checkbox.js'
const SelectableList = {
components: {
Checkbox
},
props: {
items: {
type: Array,
default: () => []
}
}
}
export default SelectableList