修复了样式生成器中切换SC固定栏后不显示的问题

This commit is contained in:
John Smith 2021-02-14 14:31:53 +08:00
parent c19e7692d4
commit 845e144992
2 changed files with 6 additions and 1 deletions

View File

@ -102,6 +102,11 @@ export default {
methods: {
async onTickerItemEnter(el, done) {
let width = el.clientWidth
if (width === 0) {
// CSS
done()
return
}
el.style.width = 0
await this.$nextTick()
el.style.width = `${width}px`

View File

@ -9,7 +9,7 @@
</router-link>
</div>
<div class="version">
v1.5.1
v1.5.2-beta
</div>
<sidebar></sidebar>
</el-aside>