Vue | 父子组件传递数据 slot-scope

父组件 Parent.vuejavascript // Parent.vue import child from './child' export default { components: { child } } 子组件 child.vuehtml // child.vue export default { props: { msg: String } } 1.
相关文章
相关标签/搜索