2026-03-21 02:43:28 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import AccountSection from '@/views/settings/AccountSection.vue'
|
2026-06-18 03:33:37 -04:00
|
|
|
import SystemUpdatesSection from '@/views/settings/SystemUpdatesSection.vue'
|
|
|
|
|
import AppRegistriesSection from '@/views/settings/AppRegistriesSection.vue'
|
2026-03-21 02:43:28 +00:00
|
|
|
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">
|
2026-03-21 02:43:28 +00:00
|
|
|
<AccountSection />
|
2026-06-18 03:33:37 -04:00
|
|
|
<SystemUpdatesSection />
|
|
|
|
|
<AppRegistriesSection />
|
2026-03-21 02:43:28 +00:00
|
|
|
<SystemSection />
|
2026-01-24 22:59:20 +00:00
|
|
|
</div>
|
|
|
|
|
</template>
|