2018-11-08 19:23:39 +05:30
|
|
|
const mountComponent = (Component, props = {}, el = null) =>
|
|
|
|
new Component({
|
|
|
|
propsData: props,
|
|
|
|
}).$mount(el);
|
|
|
|
|
|
|
|
export const createComponentWithStore = (Component, store, propsData = {}) =>
|
|
|
|
new Component({
|
|
|
|
store,
|
|
|
|
propsData,
|
|
|
|
});
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
export const mountComponentWithStore = (Component, { el, props, store }) =>
|
|
|
|
new Component({
|
|
|
|
store,
|
2018-11-08 19:23:39 +05:30
|
|
|
propsData: props || {},
|
2018-05-09 12:01:36 +05:30
|
|
|
}).$mount(el);
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
export default mountComponent;
|