make all dropdown menus consistent
This commit is contained in:
parent
7a3a4e81a1
commit
4887d37110
11 changed files with 601 additions and 460 deletions
|
|
@ -8,18 +8,22 @@
|
|||
>
|
||||
<template #content>
|
||||
<div class="dropdown-menu">
|
||||
<button
|
||||
<div
|
||||
v-for="list in lists"
|
||||
:key="list.id"
|
||||
class="menu-item dropdown-item -icon"
|
||||
@click="toggleList(list.id)"
|
||||
>
|
||||
<span
|
||||
class="input menu-checkbox"
|
||||
:class="{ 'menu-checkbox-checked': list.inList }"
|
||||
/>
|
||||
{{ list.title }}
|
||||
</button>
|
||||
<button
|
||||
class="main-button"
|
||||
@click="toggleList(list.id)"
|
||||
>
|
||||
<span
|
||||
class="input menu-checkbox"
|
||||
:class="{ 'menu-checkbox-checked': list.inList }"
|
||||
/>
|
||||
{{ list.title }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<template #trigger>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue