mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-19 05:09:40 +02:00
28 lines
421 B
Vue
28 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>
|