layui/src/component/splitPanel/index.ts

9 lines
180 B
TypeScript
Raw Normal View History

2022-01-19 01:38:54 +00:00
import type { App } from "vue";
import Component from "./index.vue";
Component.install = (app: App) => {
2022-01-27 08:18:16 +00:00
app.component(Component.name, Component);
2022-01-19 01:38:54 +00:00
};
2022-01-27 08:18:16 +00:00
export default Component;