9 lines
226 B
JavaScript
Raw Normal View History

2022-01-03 02:41:24 +08:00
import MyProcessViewer from "./ProcessViewer.vue";
MyProcessViewer.install = function(Vue) {
Vue.component(MyProcessViewer.name, MyProcessViewer);
};
// 流程图的查看器,不可编辑
2022-01-03 02:41:24 +08:00
export default MyProcessViewer;