10 lines
274 B
TypeScript
10 lines
274 B
TypeScript
|
import type { App } from "vue";
|
||
|
import Component from "./index.vue";
|
||
|
import type { IDefineComponent } from "../type/index";
|
||
|
|
||
|
Component.install = (app: App) => {
|
||
|
app.component(Component.name || "laySplitPanel", Component);
|
||
|
};
|
||
|
|
||
|
export default Component as IDefineComponent;
|