21 lines
408 B
Vue
Raw Normal View History

2025-10-21 01:14:13 +07:00
<script setup lang="ts">
import { LayoutVue } from '@/components/common'
const config = {
token: {
colorPrimary: '#ff7789',
borderRadius: 0,
},
}
</script>
<template>
<a-config-provider :theme="config" :autoInsertSpaceInButton="false">
<LayoutVue>
<router-view />
</LayoutVue>
</a-config-provider>
</template>
<style lang="scss" scoped></style>