2025-10-21 01:14:13 +07:00
|
|
|
<script setup lang="ts">
|
2025-10-21 12:48:19 +07:00
|
|
|
import { LayoutVue } from '@/components'
|
2025-10-21 01:14:13 +07:00
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
|
token: {
|
2025-10-21 15:11:46 +07:00
|
|
|
colorPrimary: '#007FCF',
|
|
|
|
|
borderRadius: 4,
|
2025-10-21 01:14:13 +07:00
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<a-config-provider :theme="config" :autoInsertSpaceInButton="false">
|
|
|
|
|
<LayoutVue>
|
|
|
|
|
<router-view />
|
|
|
|
|
</LayoutVue>
|
|
|
|
|
</a-config-provider>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|