layui/src/component/container/index.ts
2022-01-27 16:18:16 +08:00

10 lines
277 B
TypeScript

import type { App } from "vue";
import Component from "./index.vue";
import type { IDefineComponent } from "../../types/index";
Component.install = (app: App) => {
app.component(Component.name || "LayContainer", Component);
};
export default Component as IDefineComponent;