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.
14 lines
467 B
14 lines
467 B
import { VxeUI } from '@vxe-ui/core';
|
|
import { dynamicApp } from '../dynamics';
|
|
import VxeTipComponent from './src/tip';
|
|
export const VxeTip = Object.assign({}, VxeTipComponent, {
|
|
install(app) {
|
|
app.component(VxeTipComponent.name, VxeTipComponent);
|
|
app.component('VxeTipsComponent', VxeTipComponent);
|
|
}
|
|
});
|
|
dynamicApp.use(VxeTip);
|
|
VxeUI.component(VxeTipComponent);
|
|
export const Tips = VxeTip;
|
|
export const Tip = VxeTip;
|
|
export default VxeTip;
|
|
|