16 lines
255 B
Vue
16 lines
255 B
Vue
<template>
|
|
<a-config-provider :locale="zhCN">
|
|
<layout></layout>
|
|
</a-config-provider>
|
|
</template>
|
|
<script setup>
|
|
import Layout from '@/views/layout/index.vue'
|
|
import zhCN from 'ant-design-vue/es/locale/zh_CN';
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
</style>
|