Hello
thanks for great package the line 89 in index.js that I mention below will cause great problem when this package used in another
vue package.
the global vue mixin will override the entire store of any package that use the screen-builder package.
| |
| Vue.use(Vuex); |
| conststore=newVuex.Store({ |
| modules: { |
| globalErrorsModule, |
| // @todo Improve how to load this module, it is used only in the form builder, not used in the form renderer. |
| undoRedoModule |
| } |
| }); |
| Vue.mixin({ store }); |
Hello
thanks for great package the line 89 in index.js that I mention below will cause great problem when this package used in another
vue package.
the global vue mixin will override the entire store of any package that use the screen-builder package.
screen-builder/src/components/index.js
Lines 80 to 89 in cec0644