mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 05:39:40 +02:00
29 lines
421 B
Vue
29 lines
421 B
Vue
<template>
|
|||
<div class="text-center">
|
|||
<v-dialog v-model="dialog" width="500px">
|
|||
<LoginForm @logged-in="dialog = false" />
|
|||
</v-dialog>
|
|||
</div>
|
|||
</template>
|
|||
|
|||
<script>
|
|||
import LoginForm from "./LoginForm";
|
|||
export default {
|
|||
components: {
|
|||
LoginForm,
|
|||
},
|
|||
data() {
|
|||
return {
|
|||
dialog: false,
|
|||
};
|
|||
},
|
|||
methods: {
|
|||
open() {
|
|||
this.dialog = true;
|
|||
},
|
|||
},
|
|||
};
|
|||
</script>
|
|||
|
|||
<style>
|
|||
</style>
|