mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
18 lines
302 B
JavaScript
18 lines
302 B
JavaScript
export const link = Behavior({
|
|
properties: {
|
|
url: String,
|
|
linkType: {
|
|
type: String,
|
|
value: 'navigateTo',
|
|
},
|
|
},
|
|
methods: {
|
|
jumpLink(urlKey = 'url') {
|
|
const url = this.data[urlKey];
|
|
if (url) {
|
|
wx[this.data.linkType]({ url });
|
|
}
|
|
},
|
|
},
|
|
});
|