2025-10-21 19:49:34 +07:00

21 lines
401 B
Vue

<script setup lang="ts">
import { LayoutVue } from '@/components'
const config = {
token: {
colorPrimary: '#007FCF',
borderRadius: 4,
},
}
</script>
<template>
<a-config-provider :theme="config" :autoInsertSpaceInButton="false">
<LayoutVue>
<router-view />
</LayoutVue>
</a-config-provider>
</template>
<style lang="scss" scoped></style>