akkoma-fe/src/components/selectable_list/selectable_list.js

16 lines
217 B
JavaScript
Raw Normal View History

2019-04-04 01:43:24 +00:00
import Checkbox from '../checkbox/checkbox.js'
const SelectableList = {
2019-04-04 01:43:24 +00:00
components: {
Checkbox
},
props: {
items: {
type: Array,
default: () => []
}
2019-04-04 01:43:24 +00:00
}
}
export default SelectableList