mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-12 07:55:36 -04:00
12 lines
194 B
Vue
12 lines
194 B
Vue
<template>
|
|
<BaseDialog
|
|
v-model="dialog"
|
|
>
|
|
test <!-- TODO -->
|
|
</BaseDialog>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const dialog = defineModel<boolean>({ default: false });
|
|
</script>
|