升级组件依赖到最新版本

This commit is contained in:
RuoYi
2025-06-04 15:31:48 +08:00
parent 5723e17eef
commit f237f27861
6 changed files with 34 additions and 35 deletions

View File

@@ -47,8 +47,6 @@ const getLogoTextColor = computed(() => {
</script>
<style lang="scss" scoped>
@import '@/assets/styles/variables.module.scss';
.sidebarLogoFade-enter-active {
transition: opacity 1.5s;
}

View File

@@ -64,11 +64,11 @@ function setLayout() {
</script>
<style lang="scss" scoped>
@import "@/assets/styles/mixin.scss";
@import "@/assets/styles/variables.module.scss";
@use "@/assets/styles/mixin.scss" as mix;
@use "@/assets/styles/variables.module.scss" as vars;
.app-wrapper {
@include clearfix;
@include mix.clearfix;
position: relative;
height: 100%;
width: 100%;
@@ -94,7 +94,7 @@ function setLayout() {
top: 0;
right: 0;
z-index: 9;
width: calc(100% - #{$base-sidebar-width});
width: calc(100% - #{vars.$base-sidebar-width});
transition: width 0.28s;
}