add SelectableRow component

fix-dropdown
taehoon 6 years ago
parent a509990937
commit 4b292564d8

@ -0,0 +1,16 @@
import Checkbox from '../checkbox/checkbox.js'
const SelectableRow = {
components: {
Checkbox
},
props: ['checked'],
data () {
},
computed: {
},
methods: {
}
}
export default SelectableRow

@ -0,0 +1,10 @@
<template>
<div>
<Checkbox v-model="checked" />
</div>
</template>
<script src="./selectable_row.js"></script>
<style lang="scss">
</style>
Loading…
Cancel
Save