YZProjectCloud/yanzhu-ui-vue3/src/App.vue

27 lines
429 B
Vue
Raw Normal View History

2024-08-17 12:11:19 +08:00
<template>
<router-view />
</template>
<script setup>
import useSettingsStore from "@/store/modules/settings";
import { handleThemeStyle } from "@/utils/theme";
onMounted(() => {
nextTick(() => {
handleThemeStyle(useSettingsStore().theme);
});
});
</script>
<style lang="scss">
.el-form-item__content {
.el-select--default {
width: 192px;
}
}
2024-08-22 16:28:18 +08:00
.bjs-container{
a{
display: none !important;
}
}
2024-08-17 12:11:19 +08:00
</style>