vant-weapp/lib/mixins/open-type.js
2019-04-03 10:21:53 +08:00

28 lines
812 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.openType = Behavior({
properties: {
openType: String
},
methods: {
bindGetUserInfo: function (event) {
this.$emit('getuserinfo', event.detail);
},
bindContact: function (event) {
this.$emit('contact', event.detail);
},
bindGetPhoneNumber: function (event) {
this.$emit('getphonenumber', event.detail);
},
bindError: function (event) {
this.$emit('error', event.detail);
},
bindLaunchApp: function (event) {
this.$emit('launchapp', event.detail);
},
bindOpenSetting: function (event) {
this.$emit('opensetting', event.detail);
},
}
});