26 lines
476 B
Vue
26 lines
476 B
Vue
<template>
|
|
<div id="app">
|
|
<a-config-provider :locale="zh_CN">
|
|
<template #renderEmpty>
|
|
<div class="text-center pt-md">
|
|
<a-icon class="h3 mb-md" type="smile" />
|
|
<p>暂无数据</p>
|
|
</div>
|
|
</template>
|
|
<router-view />
|
|
</a-config-provider>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import zh_CN from 'ant-design-vue/es/locale/zh_CN';
|
|
|
|
export default {
|
|
name: 'App',
|
|
data() {
|
|
return {
|
|
zh_CN,
|
|
};
|
|
},
|
|
};
|
|
</script> |