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

17 lines
215 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: ['checked'],
data () {
},
computed: {
},
methods: {
}
}
export default SelectableList