| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | <template>  <div id="app">    <router-view />  </div></template><script>import { delAllTabsKey } from "@/util/keyData";export default {  name: "app",  data() {    return {};  },  watch: {},  mounted() {    //刷新浏览器清除标签key    delAllTabsKey("ALL");  },  methods: {},  computed: {}};</script><style lang="scss">#app {  width: 100%;  height: 100%;  overflow: hidden;}.el-input.is-disabled .el-input__inner {  color: #000000 !important;  background-color: #fafafa !important;}.el-textarea.is-disabled .el-textarea__inner {  color: #000000 !important;  background-color: #fafafa !important;}.el-dialog__headerbtn {  top: 9px !important;}.el-dialog__headerbtn{  margin-top: 5px !important;}</style>
 |