21 lines
401 B
Vue
Raw Normal View History

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: {
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>