1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| import MyProcessDesigner from './designer';
| import MyProcessPalette from './palette';
| import MyProcessPenal from './penal';
|
| const components = [MyProcessDesigner, MyProcessPenal, MyProcessPalette];
|
| const install = function(Vue) {
| components.forEach(component => {
| Vue.component(component.name, component);
| });
| };
|
| if (typeof window !== 'undefined' && window.Vue) {
| install(window.Vue);
| }
|
| export default {
| version: '0.0.1',
| install,
| ...components
| };
|
|