将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()
这是一个好方法吗?它看起来并不漂亮,这就是为什么我怀疑这不是一个好习惯。