2019-04-03 18:43:24 -07:00
|
|
|
import Checkbox from '../checkbox/checkbox.js'
|
|
|
|
|
2019-04-03 19:38:48 -07:00
|
|
|
const SelectableList = {
|
2019-04-03 18:43:24 -07:00
|
|
|
components: {
|
|
|
|
Checkbox
|
|
|
|
},
|
2019-04-03 19:48:00 -07:00
|
|
|
props: {
|
|
|
|
items: {
|
|
|
|
type: Array,
|
|
|
|
default: () => []
|
|
|
|
}
|
2019-04-03 18:43:24 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-03 19:38:48 -07:00
|
|
|
export default SelectableList
|