mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
466 B
JavaScript
24 lines
466 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
exports.link = void 0;
|
|
exports.link = Behavior({
|
|
properties: {
|
|
url: String,
|
|
linkType: {
|
|
type: String,
|
|
value: 'navigateTo',
|
|
},
|
|
},
|
|
methods: {
|
|
jumpLink: function (urlKey) {
|
|
if (urlKey === void 0) {
|
|
urlKey = 'url';
|
|
}
|
|
var url = this.data[urlKey];
|
|
if (url) {
|
|
wx[this.data.linkType]({ url: url });
|
|
}
|
|
},
|
|
},
|
|
});
|