21 lines
377 B
JavaScript
21 lines
377 B
JavaScript
|
|
import Toast, { hideToast } from 'tdesign-miniprogram/toast/index';
|
||
|
|
|
||
|
|
Component({
|
||
|
|
methods: {
|
||
|
|
handleShow() {
|
||
|
|
Toast({
|
||
|
|
context: this,
|
||
|
|
selector: '#t-toast',
|
||
|
|
duration: -1,
|
||
|
|
message: '轻提示文字内容',
|
||
|
|
});
|
||
|
|
},
|
||
|
|
handleHide() {
|
||
|
|
hideToast({
|
||
|
|
context: this,
|
||
|
|
selector: '#t-toast',
|
||
|
|
});
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|