vue 父组件给子组件传值子组件给父组件传值的实例代码
程序员文章站
2022-04-10 13:42:15
父组件如何给子组件传值
使用props
举个例子:
子组件:fromtest.vue,父组件 app.vue
fromtest.vue
父组件如何给子组件传值
使用props
举个例子:
子组件:fromtest.vue,父组件 app.vue
fromtest.vue
<template> <h2>{{title}}</h2> //title必须是父组件传递的 </template> <script> export default (){ props:["title"] //可以是数组,也可以是对象 //如何对title进行校验 //props:{ // type:string,required:true //如果父组件不传值就会报错 //} } </script>
父组件 app.vue
<template> <from-test title = "你好 "></from-test> //1.指定值 //<from-test :title = "titlevar "></from-test> //2.动态传值 titlevar 是变量 </template> <script> export default (){ data(){ titlevar :'你好' //动态传值就代表数据这里需要定义titlevar } } </script>
子组件如何给父组件传值
事件,$emit
子组件
button.vue
<template> <button @click='handclick'></button> </template> <script> export default(){ methods(){ handclick(){ this.$emit(lalala,{message:"heihei"}) //lalala是函数名称,后面是想要传递的值 } } } </script>
父组件
app.vue
<template> <k-button @lalala = handclick></k-button> </template> <script> import kbutton form './components/kbutton' //自己要记得导入组件,引用组件名称 export default(){ components(){ kbutton } methods(){ handclick(obj){ console.log(obj) //点击button,控制台就收到值了 } } } </script>
总结
以上所述是小编给大家介绍的vue 父组件给子组件传值子组件给父组件传值的实例代码 ,希望对大家有所帮助