Skip to content
Snippets Groups Projects
Commit 37609b09 authored by Henrik Askjer's avatar Henrik Askjer
Browse files

add v-model

parent 6365f547
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@
</v-list>
</v-menu>
<v-dialog max-width="600px"
<v-dialog max-width="600px" v-model="settings_dialog"
:close-on-content-click="false" origin="bottom">
<template v-slot:activator="{ on, attrs }">
<v-btn v-bind="attrs" v-on="on" min-width="0px" class = "search-field-button" plain depressed color = "primary" text><span v-if="$vuetify.breakpoint.mdAndUp"></span><v-icon>more_vert</v-icon></v-btn>
......@@ -65,14 +65,14 @@
<v-btn
dark
text
@click="dialog = false"
@click="settings_dialog = false"
>
Tilbakestill
</v-btn>
<v-btn
dark
text
@click="dialog = false"
@click="settings_dialog = false"
>
Lukk
</v-btn>
......@@ -138,6 +138,7 @@
search: null,
select: null,
suggesting: null,
settings_dialog: false
}
},
watch: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment