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

16 lines
215 B
JavaScript

import Checkbox from '../checkbox/checkbox.js'
const SelectableList = {
components: {
Checkbox
},
props: ['checked'],
data () {
},
computed: {
},
methods: {
}
}
export default SelectableList