mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-10 23:15:34 -04:00
add announcements composable and dialog component
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<template>
|
||||
<BaseDialog
|
||||
v-model="dialog"
|
||||
>
|
||||
test <!-- TODO -->
|
||||
</BaseDialog>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const dialog = defineModel<boolean>({ default: false });
|
||||
</script>
|
||||
Reference in New Issue
Block a user