You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-spms-vue/src/App.vue

59 lines
821 B
Vue

2 years ago
<template>
<div id="app">
<router-view />
1 year ago
<el-backtop target="#app"></el-backtop>
2 years ago
</div>
</template>
<script>
export default {
name: 'App',
metaInfo() {
return {
title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
titleTemplate: title => {
return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
}
}
}
}
</script>
1 year ago
<style>
.width-full{
width: 100%;
}
.height-full{
height: 100%;
}
.mt15{
margin-top: 15px;
}
.p0{
padding: 0;
}
.p10{
padding: 10px;
}
.m0{
margin: 0;
}
.el-card__header{
padding: 0;
}
.d-block{
display: block;
}
</style>
<style lang="scss">
//tabel样式优化
.el-table th.gutter {
display: table-cell !important;
}
1 year ago
</style>