mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-02 20:15:24 +02:00
23 lines
312 B
Vue
23 lines
312 B
Vue
|
<template>
|
||
|
<v-container>
|
||
|
<Theme />
|
||
|
<Backup />
|
||
|
<Webhooks />
|
||
|
</v-container>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Backup from "./Backup";
|
||
|
import Webhooks from "./Webhooks";
|
||
|
import Theme from "./Theme";
|
||
|
export default {
|
||
|
components: {
|
||
|
Backup,
|
||
|
Webhooks,
|
||
|
Theme,
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|