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