vue element中如何在弹出框中获取dom元素来使用ech
2018-08-20 本文已影响22人
回不去的那些时光
- 1、在dialog中使用open方法
- 2、在定时函数setTimeout中执行方法
// dialog的open方法
openChargeRate() {
const _self = this;
setTimeout(() => {
// 执行echarts画图方法
_self.drawLine();
}, 0);
}
// dialog的open方法
openChargeRate() {
const _self = this;
setTimeout(() => {
// 执行echarts画图方法
_self.drawLine();
}, 0);
}