mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-07 13:35:36 -04:00
12 lines
195 B
Vue
12 lines
195 B
Vue
<template>
|
|
<div />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const router = useRouter();
|
|
onMounted(() => {
|
|
// Force redirect to first valid page
|
|
router.push("/group/data/foods");
|
|
});
|
|
</script>
|