diff options
| author | taehoon <th.dev91@gmail.com> | 2019-04-03 22:48:00 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-04-17 11:32:48 -0400 |
| commit | d9b3f5be4733f0eef4d3c8dff982224cd1a5303e (patch) | |
| tree | fe16c6a0d122962cb34c37b88a6ae0d52b2ce027 /src/components/selectable_list/selectable_list.js | |
| parent | 23b9d1eaa31efc83705288409e5993279ae969e6 (diff) | |
use SelectableList for blocks/mutes list
Diffstat (limited to 'src/components/selectable_list/selectable_list.js')
| -rw-r--r-- | src/components/selectable_list/selectable_list.js | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/components/selectable_list/selectable_list.js b/src/components/selectable_list/selectable_list.js index cd431eeb..138e63ab 100644 --- a/src/components/selectable_list/selectable_list.js +++ b/src/components/selectable_list/selectable_list.js @@ -4,12 +4,11 @@ const SelectableList = { components: { Checkbox }, - props: ['checked'], - data () { - }, - computed: { - }, - methods: { + props: { + items: { + type: Array, + default: () => [] + } } } |
