Results 2 issues of burning

Hey, @YogliB 👋 that's happening because putting a `@use` rule inside a `:global {}` rule is not a valid in `sass`. The global attribute/selector preprocessor os executed after scss transforms...

question

想在 modal 组件中添加一个根据组件高度计算的 margin-top 值 ``` ``` ``` watch: { show: function (val, oldVal) { if (val) { this.marginTop = - parseInt(this.$el.offsetHeight / 2); } }, }, ``` 刚接触vuejs, 我不是很确信我的思路是否正确。...