91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue組件父與子通信詳解(一)

發布時間:2020-09-28 15:33:25 來源:腳本之家 閱讀:123 作者:匿名的girl 欄目:web開發

本文實例為大家分享了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>
   <h2>這是父組件</h2>
   <hr>
   <child-component v-bind:myValue="gift"></child-component>
  </div>
  `
 })
 Vue.component("child-component",{
  props:["myValue"],
  template:`
  <div>
   <h2>這是子組件</h2>
   <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,否則就不用。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

华容县| 娄烦县| 驻马店市| 云安县| 东方市| 屏东市| 青河县| 汉中市| 喜德县| 沂水县| 深水埗区| 永顺县| 广灵县| 彭泽县| 涞源县| 苍山县| 南木林县| 凤阳县| 古丈县| 万源市| 韩城市| 乌拉特后旗| 莱阳市| 名山县| 广宁县| 城口县| 中山市| 塔河县| 中牟县| 静乐县| 长阳| 普宁市| 固阳县| 顺平县| 白玉县| 沅江市| 巴林左旗| 从江县| 浦东新区| 拉孜县| 娄底市|