fix: 🐛 修复Cell 单格组件 is-link 不触发 click

This commit is contained in:
hzh 2023-08-25 17:02:02 +08:00
parent eb0ce30c0e
commit ece5568ecc

View File

@ -103,12 +103,13 @@ const emit = defineEmits(['click'])
*/
function onClick() {
const url = props.to
if (props.clickable || props.isLink) {
emit('click')
}
if (url && props.isLink) {
;(uni as any)[props.replace ? 'redirectTo' : 'navigateTo']({ url })
}
if (props.clickable) {
emit('click')
}
}
</script>