1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-20 13:49:40 +02:00
mealie/frontend/pages/admin/toolbox/categories.vue

19 lines
349 B
Vue
Raw Normal View History

<template>
<v-container fluid>
<BaseCardSectionTitle title="Manage Categories"> </BaseCardSectionTitle>
</v-container>
2021-08-01 19:24:47 -08:00
</template>
2021-08-01 19:24:47 -08:00
<script lang="ts">
import { defineComponent } from "@nuxtjs/composition-api";
export default defineComponent({
layout: "admin",
setup() {
return {};
},
});
</script>
2021-08-01 19:24:47 -08:00
<style scoped>
</style>