We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e11916 commit 8a657a7Copy full SHA for 8a657a7
web/src/components/TaskForm.vue
@@ -96,16 +96,14 @@
96
:multiple="v.type === 'select'"
97
:chips="v.type === 'select'"
98
>
99
- <template v-slot:selection="{ item, index }">
100
- <div v-if="v.type === 'select'">
101
- <v-chip
102
- small
103
- close
104
- @click:close="deleteItem(v.name, index)"
105
- >
106
- {{ item.name }}
107
- </v-chip>
108
- </div>
+ <template v-if="v.type === 'select'" v-slot:selection="{ item, index }">
+ <v-chip
+ small
+ close
+ @click:close="deleteItem(v.name, index)"
+ >
+ {{ item.name }}
+ </v-chip>
109
</template>
110
</v-select>
111
0 commit comments