aboutsummaryrefslogtreecommitdiff
path: root/src/components/list
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-04-04 04:32:36 -0400
committertaehoon <th.dev91@gmail.com>2019-04-17 11:32:49 -0400
commitcf2c411db34953e65c186e214bd9bae44073c881 (patch)
treec36a042ce991a03328ffc01a194132a141487c20 /src/components/list
parent83faa96f1b7405be2fb17b717c72c10ff8a65b59 (diff)
add header to selectable-list component
Diffstat (limited to 'src/components/list')
-rw-r--r--src/components/list/list.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/list/list.vue b/src/components/list/list.vue
index 9d4beb21..7136915b 100644
--- a/src/components/list/list.vue
+++ b/src/components/list/list.vue
@@ -1,7 +1,7 @@
<template>
<div class="list">
<div v-for="item in items" class="list-item" :key="getKey(item)">
- <slot name="item" :item="item" :keyVal="getKey(item)" />
+ <slot name="item" :item="item" />
</div>
<div class="list-empty-content faint" v-if="items.length === 0 && !!$slots.empty">
<slot name="empty" />