摘要: 父组件传值给子组件后,子组件接收 ** * 定义组件属性类型 */ interface Props { v: string; } /** * 给组件指定初始值 */ const props = withDefaults(defineProps<Props>(), { v: () => "", }); 阅读全文
posted @ 2024-07-27 10:44 justlearn 阅读(587) 评论(0) 推荐(0) 编辑