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

9 lines
180 B
TypeScript

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