ilk commit
This commit is contained in:
5
src/module/ayarlar/routes/index.ts
Normal file
5
src/module/ayarlar/routes/index.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import settings from "@/module/ayarlar/routes/settings";
|
||||
|
||||
export default [
|
||||
settings
|
||||
]
|
||||
10
src/module/ayarlar/routes/settings.ts
Normal file
10
src/module/ayarlar/routes/settings.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import Settings from "@/module/ayarlar/views/Settings.vue"
|
||||
|
||||
export default {
|
||||
path: "/settings",
|
||||
name: 'Settings',
|
||||
component: Settings,
|
||||
meta: {
|
||||
authRequired: true
|
||||
}
|
||||
}
|
||||
0
src/module/ayarlar/service/index.ts
Normal file
0
src/module/ayarlar/service/index.ts
Normal file
0
src/module/ayarlar/stores/index.ts
Normal file
0
src/module/ayarlar/stores/index.ts
Normal file
9
src/module/ayarlar/views/Settings.vue
Normal file
9
src/module/ayarlar/views/Settings.vue
Normal file
@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<AdminLayout>
|
||||
<Breadcrumb current-page-text="Genel Ayarlar"/>
|
||||
</AdminLayout>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import AdminLayout from "@/layouts/AdminLayout.vue";
|
||||
import {Breadcrumb} from "@/components/global";
|
||||
</script>
|
||||
Reference in New Issue
Block a user