Ai
1 Star 0 Fork 82

磊声大,雨点小/lin-cms-vue

forked from 林间有风/lin-cms-vue 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.vue 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
<template>
<el-config-provider :locale="locale">
<div id="app">
<router-view />
</div>
</el-config-provider>
</template>
<script>
import { ElConfigProvider } from 'element-plus'
import zhCn from 'element-plus/lib/locale/lang/zh-cn'
export default {
components: {
[ElConfigProvider.name]: ElConfigProvider,
},
data() {
return {
locale: zhCn,
}
},
mounted() {
document.getElementById('loader').style.display = 'none'
},
}
</script>
<style lang="scss">
#app {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
#nav {
padding: 30px;
a {
font-weight: bold;
color: #2c3e50;
&.router-link-exact-active {
color: #42b983;
}
}
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
transition-delay: 99999s;
transition: color 99999s ease-out, background-color 99999s ease-out;
}
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/lgzkd/lin-cms-vue.git
git@gitee.com:lgzkd/lin-cms-vue.git
lgzkd
lin-cms-vue
lin-cms-vue
vue-next

搜索帮助