9 lines
179 B
Vue
9 lines
179 B
Vue
<script setup>
|
|
import { themeConfig } from '@/assets/theme'
|
|
</script>
|
|
<template>
|
|
<a-config-provider :theme="themeConfig">
|
|
<router-view />
|
|
</a-config-provider>
|
|
</template>
|