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

28 lines
475 B
Vue
Raw Normal View History

2024-08-17 12:11:19 +08:00
<template>
<router-view />
</template>
<script setup>
2024-08-24 11:53:56 +08:00
import useSettingsStore from '@/store/modules/settings'
import { handleThemeStyle } from '@/utils/theme'
2024-08-17 12:11:19 +08:00
onMounted(() => {
nextTick(() => {
handleThemeStyle(useSettingsStore().theme);
2024-08-24 11:53:56 +08:00
})
})
2024-08-17 12:11:19 +08:00
</script>
2024-09-01 17:36:53 +08:00
<style lang="scss">
2024-10-01 16:35:07 +08:00
.no-form-label {
.el-form-item {
.el-form-item__label {
2024-09-01 17:36:53 +08:00
display: none !important;
}
}
}
2024-10-01 16:35:07 +08:00
.fitem-no-width{
.el-form-item__label{
width:unset !important;
}
}
2024-09-01 17:36:53 +08:00
</style>