You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
509 B
Vue

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<script setup>
/**
* name
* usersa0ChunLuyu
* date2022-04-19 15:47:14
*/
// 平台特殊性 下层组件 URL 参数只能从最高层下传
// 注意上层 dev 文件也有示例代码
const $props = defineProps({
name: {
type: String,
default: ''
}
});
</script>
<template>
<uni-section title="路由参数" type="line">
<view class="uni-ma-5 uni-pb-5 example_item_wrapper">
{"name":"{{ $props.name }}"}
</view>
</uni-section>
</template>