将Vuex传递到实例组件的最佳方法?

时间:2019-01-21 13:23:35

标签: vue.js vuejs2 vue-component vuex

将Vuex传递给以编程方式实例化的组件的最佳方法是什么?

这就是我在做什么:

let visual = Vue.extend(IPGVisual)
this.tempIPG = new visual({
    propsData: { $store: this.$store }
})
this.tempIPG.$mount()
this.$refs.container.appendChild(this.tempIPG.$el)
this.tempIPG.load()

这是一个好方法吗?它看起来并不漂亮,这就是为什么我怀疑这不是一个好习惯。

0 个答案:

没有答案