2021-12-24 16:09:30 +00:00
|
|
|
import type { App } from "vue";
|
|
|
|
import Component from "./index.vue";
|
2022-01-27 08:18:16 +00:00
|
|
|
import type { IDefineComponent } from "../../types/index";
|
2021-10-15 14:44:10 +00:00
|
|
|
|
|
|
|
Component.install = (app: App) => {
|
2021-12-24 16:09:30 +00:00
|
|
|
app.component(Component.name || "LayCarousel", Component);
|
|
|
|
};
|
2021-10-15 14:44:10 +00:00
|
|
|
|
2021-12-24 16:09:30 +00:00
|
|
|
export default Component as IDefineComponent;
|