2022-01-02 21:12:47 +08:00
|
|
|
import type { App } from "vue";
|
|
|
|
import { LayLayer } from "@layui/layer-vue";
|
2022-01-27 16:18:16 +08:00
|
|
|
import type { IDefineComponent } from "../../types/index";
|
2022-01-02 21:12:47 +08:00
|
|
|
|
|
|
|
LayLayer.install = (app: App) => {
|
|
|
|
app.component(LayLayer.name || "LayLayer", LayLayer);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default LayLayer as IDefineComponent;
|