rename selectable_row to selectable_list
This commit is contained in:
parent
39efe9c522
commit
23b9d1eaa3
2 changed files with 2 additions and 2 deletions
16
src/components/selectable_list/selectable_list.js
Normal file
16
src/components/selectable_list/selectable_list.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
import Checkbox from '../checkbox/checkbox.js'
|
||||
|
||||
const SelectableList = {
|
||||
components: {
|
||||
Checkbox
|
||||
},
|
||||
props: ['checked'],
|
||||
data () {
|
||||
},
|
||||
computed: {
|
||||
},
|
||||
methods: {
|
||||
}
|
||||
}
|
||||
|
||||
export default SelectableList
|
10
src/components/selectable_list/selectable_list.vue
Normal file
10
src/components/selectable_list/selectable_list.vue
Normal file
|
@ -0,0 +1,10 @@
|
|||
<template>
|
||||
<div>
|
||||
<Checkbox v-model="checked" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script src="./selectable_row.js"></script>
|
||||
|
||||
<style lang="scss">
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue