fill-height is now a class, dense is a density and fix all v-selects
This commit is contained in:
parent
fba172d5cf
commit
bde99dc242
14 changed files with 109 additions and 90 deletions
|
|
@ -101,20 +101,22 @@
|
|||
:items="joinRules"
|
||||
class="mt-4"
|
||||
v-model="roomJoinRule"
|
||||
item-title="text"
|
||||
item-value="id"
|
||||
item-props
|
||||
return-object
|
||||
>
|
||||
<template v-slot:selection="{ item }">
|
||||
<v-icon color="black" class="me-2">{{ item.icon }}</v-icon>
|
||||
{{ item.text }}
|
||||
<v-icon color="black" class="me-2">{{ item.props.icon }}</v-icon>
|
||||
{{ item.props.text }}
|
||||
</template>
|
||||
<template v-slot:item="{ item, attrs, on }">
|
||||
<v-list-item v-on="on" v-bind="attrs">
|
||||
<template v-slot:item="{ props }">
|
||||
<v-list-item v-bind="props">
|
||||
<template v-slot:prepend>
|
||||
<v-avatar color="grey">
|
||||
<v-icon color="black">{{ item.icon }}</v-icon>
|
||||
<v-icon color="black">{{ props.icon }}</v-icon>
|
||||
</v-avatar>
|
||||
</template>
|
||||
<v-list-item-title>{{ item.text }}</v-list-item-title>
|
||||
<template v-slot:append="{ isActive }">
|
||||
<v-list-item-action>
|
||||
<v-btn icon v-if="isActive">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue