mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
26 lines
580 B
JavaScript
26 lines
580 B
JavaScript
export const openType = Behavior({
|
|
properties: {
|
|
openType: String,
|
|
},
|
|
methods: {
|
|
bindGetUserInfo(event) {
|
|
this.$emit('getuserinfo', event.detail);
|
|
},
|
|
bindContact(event) {
|
|
this.$emit('contact', event.detail);
|
|
},
|
|
bindGetPhoneNumber(event) {
|
|
this.$emit('getphonenumber', event.detail);
|
|
},
|
|
bindError(event) {
|
|
this.$emit('error', event.detail);
|
|
},
|
|
bindLaunchApp(event) {
|
|
this.$emit('launchapp', event.detail);
|
|
},
|
|
bindOpenSetting(event) {
|
|
this.$emit('opensetting', event.detail);
|
|
},
|
|
},
|
|
});
|