欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue组件父与子通信详解(一)

程序员文章站 2022-09-08 16:03:08
本文实例为大家分享了vue组件父与子通信的具体代码,供大家参考,具体内容如下 一、组件间通信(父组件    -->  子组件...

本文实例为大家分享了vue组件父与子通信的具体代码,供大家参考,具体内容如下

一、组件间通信(父组件    -->  子组件)

步骤:

①父组件在调用子组件 传值

<child-component myvalue="123"> </child-component>

②在子组件中 获取父组件传来的值

vue.component('child-component',{
  props:['myvalue'],
  template:''
})

代码1:

<!doctype html>
<html>
 <head>
 <meta charset="utf-8">
 <title>父传子</title>
 <script src="js/vue.js"></script>
 </head>
 <body>
 <div id="container">
 <p>{{msg}}</p>
 <parent-component></parent-component>
 </div>
 <script>
 // 在vue中一切都是组件
 //父传子
 vue.component("parent-component",{
  data:function(){
  return {
   gift:"传家宝"
  }
  },
  template:`
  <div>
   <h1>这是父组件</h1>
   <hr>
   <child-component v-bind:myvalue="gift"></child-component>
  </div>
  `
 })
 vue.component("child-component",{
  props:["myvalue"],
  template:`
  <div>
   <h1>这是子组件</h1>
   <p>{{"父传递的值:"+myvalue}}</p>
  </div>
  `
 })
 new vue({
  el:"#container",
  data:{
  msg:"hello vuejs"
  }
 })
 </script>
 </body>
</html>

myvalue是属性名,必须都一样……拿data中的用v-bind:或者:
props是property属性,是个数组

代码2:

<!doctype html>
<html>
 <head>
 <meta charset="utf-8">
 <title>父子之间通信练习</title>
 <script src="js/vue.js"></script>
 </head>
 <body>
 <div id="container">
 <p>{{msg}}</p>
 <my-login></my-login>
 </div>
 <script>
/*
 登录窗口
 创建4个组件,分别是my-label my-input my-button my-login(复合组件)
*/
 vue.component("my-label",{
  props:["mylabel"],
  template:`
  <div>
   <label>{{mylabel}}</label>
  </div>
  `
 })
 vue.component("my-input",{
  template:`
  <div>
   <input type="text"/>
  </div>
  `
 })
 vue.component("my-button",{
  props:["mybutton"],
  template:`
  <div>
   <button>{{mybutton}}</button>
  </div>
  `
 })
 //复合组件
 vue.component("my-login",{
  data:function(){
  return {
   uname:"用户名",
   upwd:"密码",
   login:"登录",
   register:"注册"
  }
  },
  template:`
  <div>
  <my-label v-bind:mylabel="uname"></my-label>
  <my-input></my-input>
  <my-label v-bind:mylabel="upwd"></my-label>
  <my-input></my-input>
  <my-button v-bind:mybutton="login"></my-button> 
  <my-button v-bind:mybutton="register"></my-button>
  </div>
  `
 })
 new vue({
  el:"#container",
  data:{
  msg:"hello vuejs"
  }
 })
 </script>
 </body>
</html>

代码3:

<!doctype html>
<html>
<head lang="en">
 <meta charset="utf-8">
 <script src="js/vue.js"></script>
 <title></title>
</head>
<body>

<div id="container">
 <my-login></my-login>
</div>

<script>

 vue.component('my-label',{
 props:['labelname'],
 template:'<label>{{labelname}}</label>'
 })
 vue.component('my-input',{
 props:['tips'],
 template:'<input type="text" :placeholder="tips"/>'
 })
 vue.component('my-button',{
 props:['btnname'],
 template:'<button>{{btnname}}</button>'
 })

 vue.component('my-login',{
 template:`
 <form>
  <my-label labelname="用户名"></my-label>
  <my-input tips="请输入用户名"></my-input>
  <br/>
  <my-label labelname="密码"></my-label>
  <my-input tips="请输入密码"></my-input>
  <br/>
  <my-button btnname="登录"></my-button>
  <my-button btnname="注册"></my-button>
 </form>
 `
 })


 new vue({
 el: '#container',
 data: {
  msg: 'hello vue'
 }
 })
</script>

</body>
</html>

要拿到data中的数据就要v-bind,否则就不用。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。