21 lines
408 B
Vue
21 lines
408 B
Vue
|
|
<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>
|