index2.js 186 B

1234567
  1. import MyProcessViewer from "./ProcessViewer.vue";
  2. MyProcessViewer.install = function(Vue) {
  3. Vue.component(MyProcessViewer.name, MyProcessViewer);
  4. };
  5. export default MyProcessViewer;