layui/src/component/collapseItem/index.ts

10 lines
276 B
TypeScript
Raw Normal View History

2021-12-24 16:09:30 +00:00
import type { App } from "vue";
import Component from "./index.vue";
import type { IDefineComponent } from "../type/index";
2021-10-01 05:35:00 +00:00
Component.install = (app: App) => {
2021-12-24 16:09:30 +00:00
app.component(Component.name || "LayCollapseItem", Component);
};
2021-10-01 05:35:00 +00:00
2021-12-24 16:09:30 +00:00
export default Component as IDefineComponent;