2018-09-05 17:54:56 +08:00

18 lines
307 B
JavaScript

import Page from '../../common/page';
import Notify from '../../dist/notify/notify';
Page({
showNotify() {
Notify('通知内容');
},
showNotify2() {
Notify({
duration: 1000,
text: '通知内容',
selector: '#custom-selector',
backgroundColor: '#38f'
});
}
});