mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-14 00:45:35 -04:00
14 lines
281 B
Vue
14 lines
281 B
Vue
<template>
|
|
<div>
|
|
Welcome to Mealie! This is a placeholder test announcement.
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import type { AnnouncementMeta } from "~/composables/use-announcements";
|
|
|
|
export const meta: AnnouncementMeta = {
|
|
title: "Placeholder Title",
|
|
};
|
|
</script>
|