1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-03 04:25:24 +02:00
mealie/frontend/src/components/Admin/Admin.vue

26 lines
382 B
Vue
Raw Normal View History

2020-12-24 16:37:38 -09:00
<template>
<v-container>
<Theme />
<Backup />
<Webhooks />
2021-01-01 16:51:55 -09:00
<Migration />
2020-12-24 16:37:38 -09:00
</v-container>
</template>
<script>
import Backup from "./Backup";
import Webhooks from "./Webhooks";
import Theme from "./Theme";
2021-01-01 16:51:55 -09:00
import Migration from "./Migration";
2020-12-24 16:37:38 -09:00
export default {
components: {
Backup,
Webhooks,
Theme,
2021-01-01 16:51:55 -09:00
Migration,
2020-12-24 16:37:38 -09:00
},
};
</script>
<style>
</style>