H5端获得控件的宽度
// #ifdef H5
let width= this.$el.querySelector(‘.btn‘).clientWidth;
// #endif
微信小程序获得控件的宽度
// #ifdef MP
let width= 0;
var query = this.createSelectorQuery();
query.select(‘.btn‘).boundingClientRect(
function(rect){
if(rect.width){
width=rect.width;
}
}
).exec();
// #endif