You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
522 B
19 lines
522 B
import { VueConstructor } from 'vue'
|
|
import { VxeUI } from '@vxe-ui/core'
|
|
import { dynamicApp } from '../dynamics'
|
|
import VxeTipComponent from './src/tip'
|
|
|
|
export const VxeTip = Object.assign({}, VxeTipComponent, {
|
|
install (app: VueConstructor) {
|
|
app.component(VxeTipComponent.name as string, VxeTipComponent)
|
|
app.component('VxeTipsComponent' as string, VxeTipComponent)
|
|
}
|
|
})
|
|
|
|
dynamicApp.use(VxeTip)
|
|
VxeUI.component(VxeTipComponent)
|
|
|
|
export const Tips = VxeTip
|
|
export const Tip = VxeTip
|
|
|
|
export default VxeTip
|
|
|