element-plus/packages/scrollbar/index.ts

9 lines
171 B
TypeScript
Raw Normal View History

2020-08-10 15:29:16 +08:00
import { App } from 'vue'
import Scrollbar from './src/index.vue'
2020-10-29 17:28:26 +08:00
2020-08-10 15:29:16 +08:00
export default (app: App): void => {
app.component(Scrollbar.name, Scrollbar)
}
2020-10-29 17:28:26 +08:00
export { Scrollbar }