mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
11 lines
266 B
TypeScript
11 lines
266 B
TypeScript
import { App } from "vue";
|
|
import reSeamlessScroll from "./src/index.vue";
|
|
|
|
export const ReSeamlessScroll = Object.assign(reSeamlessScroll, {
|
|
install(app: App) {
|
|
app.component(reSeamlessScroll.name, reSeamlessScroll);
|
|
}
|
|
});
|
|
|
|
export default ReSeamlessScroll;
|