为什么都没了

This commit is contained in:
路 范
2021-09-24 12:59:34 +08:00
parent a975b3bdee
commit a66921f0f4
962 changed files with 252792 additions and 0 deletions

26
framework/Web/src/App.vue Normal file
View File

@@ -0,0 +1,26 @@
<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>