chore: sync changes for v0.1.1

This commit is contained in:
万物街
2025-08-29 00:10:44 +08:00
parent 9dded57fb7
commit 4009b88ff0
73 changed files with 3128 additions and 1740 deletions

View File

@@ -0,0 +1,17 @@
<template>
<BasicLayout />
</template>
<script setup lang="ts">
import BasicLayout from '#/layouts/basic.vue'
import { updatePreferences, usePreferences } from '@vben/preferences'
import { onMounted } from 'vue'
const { layout } = usePreferences()
onMounted(() => {
if (layout.value !== 'sidebar-nav') {
updatePreferences({ app: { layout: 'sidebar-nav' } })
}
})
</script>