将数据从父组件传递到子组件(Props)
子组件
我们先来创建一个子组件
<template>
<div class="child">
<h3>{{title}}</h3>
<p>{{content}}</p>
</div>
</template>
<script setup lang="ts">
//从父级接收数据,定义接口
interface Props {
title: string;
content: string
}
//defineProps() 加上定义的接口名称
// defineProps<Props>();
const propsData = defineProps<Props>();
console.log('propsData',propsData.title,pro
评论(0)