diff options
| author | taehoon <th.dev91@gmail.com> | 2019-04-03 22:38:48 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-04-17 11:32:48 -0400 |
| commit | 23b9d1eaa31efc83705288409e5993279ae969e6 (patch) | |
| tree | 8702b3027197bcb234074fd8a58dd7733a54bce6 /src/components/selectable_list/selectable_list.js | |
| parent | 39efe9c522bd91f541cbbb2ff08c7c538cca4a9e (diff) | |
rename selectable_row to selectable_list
Diffstat (limited to 'src/components/selectable_list/selectable_list.js')
| -rw-r--r-- | src/components/selectable_list/selectable_list.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/selectable_list/selectable_list.js b/src/components/selectable_list/selectable_list.js new file mode 100644 index 00000000..cd431eeb --- /dev/null +++ b/src/components/selectable_list/selectable_list.js @@ -0,0 +1,16 @@ +import Checkbox from '../checkbox/checkbox.js' + +const SelectableList = { + components: { + Checkbox + }, + props: ['checked'], + data () { + }, + computed: { + }, + methods: { + } +} + +export default SelectableList |
