父组件
<template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<childVue name="123" ></childVue>
</view>
</template>
子组件
<template>
<view>Child</view>
<view>{{name}}</view>
</template>
<script setup>
import {defineProps} from "vue"
const props = defineProps({
name: String,
});
console.log("name=" + props.name); // id=10
</script>
<style>
</style>