1、获取类名,取到宽度
created() {
this.$nextTick(()=>{
this.shortcut = document.getElementsByClassName("mainCont")[0].offsetWidth +
document.getElementsByClassName("mainCont")[0].offsetLeft;
})
}
2、在data里定义
data() {
return {
shortcut:'',
}
}
3、添加动态样式绑定
:style="{'width':shortcut + 'px'}"