开发者问题收集
我有一个父组件,并尝试将反应对象作为 props 传递:<template><Child :info="reactiveObject" /></template><script setup>const reactiveObject = reactive({ name: "Object", id: "443"})Child.vue<template><div> {{ info.name }}</te