29 lines
437 B
Vue
29 lines
437 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
}
|
|
// 更新
|
|
</script>
|
|
|
|
<style>
|
|
.vue-treeselect__placeholder{
|
|
color: #dcdfe6 !important;
|
|
font-size: 14px !important;
|
|
}
|
|
.vue-treeselect__single-value{
|
|
color: #606266 !important;
|
|
font-size: 14px !important;
|
|
}
|
|
.vue-treeselect__label{
|
|
color: #606266 !important;
|
|
font-size: 14px !important;
|
|
font-weight: 500;
|
|
}
|
|
</style>
|