办学质量监测教学评价系统
du
9 小时以前 6350384ee189b076372b6570331a50abbc2a053c
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
};