mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
363 B
TypeScript
24 lines
363 B
TypeScript
import { VantComponent } from '../../common/component';
|
|
|
|
VantComponent({
|
|
data: {
|
|
sms: '',
|
|
value: '',
|
|
password: '',
|
|
username: '',
|
|
username2: '',
|
|
username3: '',
|
|
message: '',
|
|
phone: '1365577',
|
|
},
|
|
|
|
methods: {
|
|
onClickIcon() {
|
|
wx.showToast({
|
|
icon: 'none',
|
|
title: '点击图标',
|
|
});
|
|
},
|
|
},
|
|
});
|