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 @@ ...@@ -53,7 +53,7 @@
</v-list> </v-list>
</v-menu> </v-menu>
<v-dialog max-width="600px" <v-dialog max-width="600px" v-model="settings_dialog"
:close-on-content-click="false" origin="bottom"> :close-on-content-click="false" origin="bottom">
<template v-slot:activator="{ on, attrs }"> <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> <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 @@ ...@@ -65,14 +65,14 @@
<v-btn <v-btn
dark dark
text text
@click="dialog = false" @click="settings_dialog = false"
> >
Tilbakestill Tilbakestill
</v-btn> </v-btn>
<v-btn <v-btn
dark dark
text text
@click="dialog = false" @click="settings_dialog = false"
> >
Lukk Lukk
</v-btn> </v-btn>
...@@ -138,6 +138,7 @@ ...@@ -138,6 +138,7 @@
search: null, search: null,
select: null, select: null,
suggesting: null, suggesting: null,
settings_dialog: false
} }
}, },
watch: { 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