mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2025-12-12 09:57:20 +00:00
29 lines
534 B
Vue
29 lines
534 B
Vue
<template>
|
|
<view @click="toRedirect">
|
|
<slot></slot>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { redirect } from '@/utils/common'
|
|
|
|
const prop = defineProps({
|
|
url: String,
|
|
data: {
|
|
type: Object,
|
|
default: () => {
|
|
return {}
|
|
}
|
|
},
|
|
mode: {
|
|
type: String,
|
|
default: 'navigateTo'
|
|
}
|
|
})
|
|
|
|
const toRedirect = () => {
|
|
redirect(prop)
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style> |