摘要: 组件的数据传递-vue-props 代码 <!-- child_props.vue --> <!-- 子组件 <template> <h3>Child部分</h3> <p>{{ title }}</p> </template> <script lang="ts" setup> // 方式1:数组形式 阅读全文
posted @ 2025-05-07 20:30 guixiang 阅读(34) 评论(0) 推荐(0)
摘要: 组件嵌套-vue 代码 <!-- article page --> <template> <h3>Article</h3> </template> <style scoped> h3 { width: 100%; height: 100px; color: #42b983; font-size: 2 阅读全文
posted @ 2025-05-07 19:48 guixiang 阅读(20) 评论(0) 推荐(0)