init
This commit is contained in:
20
src/components/settings/SettingsView.vue
Normal file
20
src/components/settings/SettingsView.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<script setup lang="ts">
|
||||
|
||||
import CategorySettingView from "@/components/settings/CategorySettingView.vue";
|
||||
import RecurrentSettingView from "@/components/settings/RecurrentSettingView.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="flex flex-col items-center justify-center h-full ">
|
||||
<h1 class="text-2xl font-bold">Settings</h1>
|
||||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-4 h-full w-full px-6">
|
||||
<CategorySettingView />
|
||||
<RecurrentSettingView />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user