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.
13 lines
451 B
13 lines
451 B
import { VxeUI } from '../ui';
|
|
import VxeToolbarComponent from './src/toolbar';
|
|
export const VxeToolbar = Object.assign({}, VxeToolbarComponent, {
|
|
install(app) {
|
|
app.component(VxeToolbarComponent.name, VxeToolbarComponent);
|
|
}
|
|
});
|
|
if (VxeUI.dynamicApp) {
|
|
VxeUI.dynamicApp.component(VxeToolbarComponent.name, VxeToolbarComponent);
|
|
}
|
|
VxeUI.component(VxeToolbarComponent);
|
|
export const Toolbar = VxeToolbar;
|
|
export default VxeToolbar;
|
|
|