WGShare.Client.Wx/pages/toast/cover/index.js

16 lines
304 B
JavaScript

import Toast from 'tdesign-miniprogram/toast/index';
Page({
handleToast() {
Toast({
context: this,
selector: '#t-toast',
message: '禁止滑动和点击',
direction: 'column',
duration: 3000,
preventScrollThrough: true,
icon: 'poweroff',
});
},
});