Files
archy/neode-ui/src/views/Settings.vue
T

12 lines
262 B
Vue
Raw Normal View History

<script setup lang="ts">
import AccountSection from '@/views/settings/AccountSection.vue'
import SystemSection from '@/views/settings/SystemSection.vue'
</script>
2026-01-24 22:59:20 +00:00
<template>
2026-03-14 17:12:41 +00:00
<div class="pb-6">
<AccountSection />
<SystemSection />
2026-01-24 22:59:20 +00:00
</div>
</template>