mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
import { Message } from '@alifd/next';
|
|
import moment from 'moment';
|
|
|
|
export default {
|
|
Message,
|
|
moment,
|
|
test(msg) {
|
|
this.Message.notice(msg);
|
|
},
|
|
};
|