mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
26 lines
514 B
Vue
26 lines
514 B
Vue
<template>
|
|
<el-config-provider :locale="zhCn">
|
|
<router-view/>
|
|
</el-config-provider>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {ElConfigProvider} from 'element-plus';
|
|
import zhCn from 'element-plus/es/locale/lang/zh-cn';
|
|
</script>
|
|
|
|
|
|
<style lang="stylus">
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#app {
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
|
|
}
|
|
</style>
|