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