mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 19:58:12 +00:00
12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
import { Message, Dialog } from '@alifd/next';
|
|
import moment from 'moment';
|
|
|
|
export default {
|
|
Message,
|
|
Dialog,
|
|
moment,
|
|
test: function(msg) {
|
|
this.Message.notice(msg);
|
|
}
|
|
};
|