Skip to content

Commit

Permalink
type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
m2a2x committed Sep 5, 2022
1 parent 85a6234 commit 0b53496
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/vgrid.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { App, defineAsyncComponent } from "vue";
import {RevoGrid} from "./revogrid";
import vueTemplate, {vueTemplateConstructor} from "./vue-template";
import { App } from "vue";
import { RevoGrid } from "./revogrid";
import vueTemplate, { vueTemplateConstructor } from "./vue-template";
import vueEditor from "./vue-editor";

export const VGrid = RevoGrid;
Expand All @@ -13,8 +13,8 @@ export const VGridPlugin = {
return;
}
installed = true;
app.component('vue-data-grid', VGrid);
}
app.component("vue-data-grid", VGrid);
},
};

// Vue template wrapper for virtual nodes
Expand All @@ -26,6 +26,4 @@ export const VGridVueTemplateConstructor = vueTemplateConstructor;
// Vue editor wrapper
export const VGridVueEditor = vueEditor;


export default VGrid;

0 comments on commit 0b53496

Please sign in to comment.