mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
8791908da7
* feat: add calendar * chore: update doc * chore: update * chore: update
6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
import { App } from 'vue'
|
|
import Calendar from './src/index.vue'
|
|
export default (app: App): void => {
|
|
app.component(Calendar.name, Calendar)
|
|
}
|