---wiki正式切换到vue3版本---

This commit is contained in:
暮光:城中城
2023-01-11 20:33:42 +08:00
parent bc28320565
commit b8068ef29e
115 changed files with 15723 additions and 40477 deletions

View File

@@ -1,43 +1,39 @@
<template>
<div id="app">
<router-view></router-view>
</div>
<router-view></router-view>
</template>
<script>
export default {
name: 'app',
components: {},
data() {
return {};
},
mounted() {
// console.log("VUE_APP_TEST_ENV" + process.env.VUE_APP_TEST_ENV);
},
methods: {}
}
<script setup>
import {onBeforeUnmount, ref, onMounted, watch, defineProps, nextTick, defineEmits, defineExpose, computed} from 'vue';
import {onBeforeRouteUpdate, useRouter, useRoute} from "vue-router";
import {ElMessageBox, ElMessage} from 'element-plus'
</script>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
#app, .el-container, .el-menu {
height: 100%;
}
::-webkit-scrollbar {
width: 6px;
height: 9px;
-webkit-appearance: none;
}
::-webkit-scrollbar-thumb {
background: #ddd;
border-radius: 10px;
}
::-webkit-scrollbar-track-piece {
background: #eee;
}
#app,
.el-container,
.el-menu {
height: 100%;
}
::-webkit-scrollbar {
width: 6px;
height: 9px;
-webkit-appearance: none;
}
::-webkit-scrollbar-thumb {
background: #ddd;
border-radius: 10px;
}
::-webkit-scrollbar-track-piece {
background: #eee;
}
</style>