mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +08:00
73fb527f49
* init popover * feat(popover): component almost done. next `directive` * modifications * code finished * partial complete testing code * feat(popover): popover component * fix linter complains
9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
import { App } from 'vue'
|
|
import Popover from './src/index.vue'
|
|
import PopoverDirective, { VPopover } from './src/directive'
|
|
|
|
export default (app: App): void => {
|
|
app.component(Popover.name, Popover)
|
|
app.directive(VPopover, PopoverDirective)
|
|
}
|