mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
import Page from '../../common/page';
|
|
|
|
Page({
|
|
onTapLeft() {
|
|
wx.showToast({ title: '点击返回', icon: 'none' });
|
|
},
|
|
|
|
onTapRight() {
|
|
wx.showToast({ title: '点击按钮', icon: 'none' });
|
|
}
|
|
});
|