You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
907 B
58 lines
907 B
<template>
|
|
<a-locale-provider :locale="locale">
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</a-locale-provider>
|
|
</template>
|
|
<!--测试-->
|
|
<script>
|
|
import zhCN from 'ant-design-vue/lib/locale-provider/zh_CN'
|
|
import { AppDeviceEnquire } from './utils/mixin'
|
|
|
|
export default {
|
|
mixins: [AppDeviceEnquire],
|
|
data () {
|
|
return {
|
|
locale: zhCN
|
|
}
|
|
},
|
|
mounted () {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
line-height: inherit !important;
|
|
font-size: initial !important;
|
|
font-weight: initial !important;
|
|
}
|
|
|
|
.page-header .breadcrumb {
|
|
background-color: transparent !important;
|
|
padding: inherit !important;
|
|
}
|
|
|
|
.row {
|
|
margin-left: inherit !important;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: none !important;
|
|
line-height: inherit !important;
|
|
}
|
|
|
|
i > svg {
|
|
vertical-align: initial !important;
|
|
}
|
|
|
|
ul {
|
|
margin-bottom: inherit !important;
|
|
}
|
|
</style>
|