1.页面跳转
uni.navigateTo({
url: '/pages/test/test?id=1'
})
-
text.vue 页面 onLoad 获取参数,提示:TypeError: (0 , _uniApp.onLoad) is not a function
import { onLoad, } from '@dcloudio/uni-app' import { defineComponent, ref } from 'vue'; let params; import Avatar from '@/components/avatar'; export default defineComponent({ components: {}, setup(props) { let id = ref(''); onLoad((params) => { id.value = params.id; }) return { id } } })