index.vue 187 B

123456789
  1. <template>
  2. <a-config-provider :locale="zhCN">
  3. <slot></slot>
  4. </a-config-provider>
  5. </template>
  6. <script setup lang="ts">
  7. import zhCN from 'ant-design-vue/es/locale/zh_CN'
  8. </script>