欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue动态获取width的方法

程序员文章站 2022-07-03 20:55:28
vue里想用bootstrap的进度条,

vue里想用bootstrap的进度条,

<div class="progress">
 <div class="progress-bar progress-bar-warning" role="progressbar"
  aria-valuenow="60" aria-valuemin="0" aria-valuemax="100"
  style="width: 20%;">
 <span class="sr-only">20%</span>
 </div>
</div>

主要是把style="width: 20%;"变成动态获取的。

:style="'width:' + percent + '%'"

这样写就好了。

也可是这样:

用vue 获取动态元素的宽度。首页,要放在this.$nexttick里面,其实要使用$el挂载此元素,下面贴代码吧:

<el-input auto-complete="off" v-model="company.companyname" ref="companystyle"></el-input>

先定义一个ref=companystyle,我们来获取此元素的宽度,

newaddbtn(){
 let me = this;
 this.$nexttick(function () {
  me.inputstywidth = me.$refs.companystyle.$el.clientwidth + 'px';
 
 })

这样我们就获取到了这个元素的宽度了。

以上这篇vue动态获取width的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。