在vnode中的vnode中的动态道具不起作用

时间:2019-06-18 01:04:42

标签: node.js vue.js element-ui

我想在vnode中使用动态道具,但这不起作用

const h = this.$createElement;

this.$notify({
  message: h('el-progress', {
    props: {
      percentage: this.percentage,
    },
  }),
  duration: 0,
  customClass: 'download-progress-container',
});

setInterval(() => {
  this.percentage += 1;
}, 1000); 

我希望进度条的百分比可以更改为父母的道具,但不会改变

0 个答案:

没有答案