UNPKG

@vant/weapp

Version:

轻量、可靠的小程序 UI 组件库

24 lines (23 loc) 586 B
export const link = Behavior({ properties: { url: String, linkType: { type: String, value: 'navigateTo', }, }, methods: { jumpLink(urlKey = 'url') { const url = this.data[urlKey]; if (url) { if (this.data.linkType === 'navigateTo' && getCurrentPages().length > 9) { wx.redirectTo({ url }); } else { wx[this.data.linkType]({ url }); } } }, }, });