mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
* ✨ Implemented Vue plugins that register design system and element UI components * 💄 Replacing `any` with object type in Vue plugins
19 lines
481 B
JavaScript
19 lines
481 B
JavaScript
import * as locale from './locale';
|
|
import designSystemComponents from './plugins/n8nComponents';
|
|
import elementUIComponents from './plugins/elementUIComponents';
|
|
|
|
import Loading from 'element-ui/lib/loading';
|
|
import MessageBox from 'element-ui/lib/message-box';
|
|
import Message from 'element-ui/lib/message';
|
|
import Notification from 'element-ui/lib/notification';
|
|
|
|
export {
|
|
Loading,
|
|
MessageBox,
|
|
Message,
|
|
Notification,
|
|
locale,
|
|
designSystemComponents,
|
|
elementUIComponents
|
|
};
|