vue render 渲染一个progress ,里面的数值:progress 怎么动态改变???

新手上路,请多包涵

vue render 渲染一个progress ,里面的数值:progress 怎么动态改变???

阅读 2.8k
1 个回答
        render('process',{
            model: {
                value: (this.value),
                callback: function(value) {
                    this.value = value
                },
            }
        })
推荐问题