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

溫馨提示×

溫馨提示×

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

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

怎么在vue中利用$attrs實現組件間的數據傳遞

發布時間:2021-04-19 17:36:25 來源:億速云 閱讀:181 作者:Leah 欄目:web開發

本篇文章為大家展示了怎么在vue中利用$attrs實現組件間的數據傳遞,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

Vue的優點

Vue具體輕量級框架、簡單易學、雙向數據綁定、組件化、數據和結構的分離、虛擬DOM、運行速度快等優勢,Vue中頁面使用的是局部刷新,不用每次跳轉頁面都要請求所有數據和dom,可以大大提升訪問速度和用戶體驗。

組件

怎么在vue中利用$attrs實現組件間的數據傳遞 

里面的代碼如下

//grandfather
<template>
 <div >
  father in grandfather
  <father :father-age="50" :child-time="`${time}`"></father>
 </div>
</template>
<script>
import father from './father'
export default {
 components: {
  father
 },
 data () {
  return {
   time: new Date().getTime()
  }
 }
}
</script>

//father
<template>
 <div >
  child in father
  <div>
   <span>father age:</span>{{fatherAge}}
  </div>
  <child v-bind="$attrs"></child>
 </div>
</template>
<script>
import child from './child'
export default {
 components: {
  child
 },
 props: {
  fatherAge: {
   type: Number,
   default: 0
  }
 }
}
</script>

//child<template>
 <div >
  <div>child</div>
  <div>time: {{childTime}}</div>
 </div>
</template>
<script>
export default {
 props: {
  childTime: {
   type: String,
   default: ''
  }
 }
}
</script>

上述內容就是怎么在vue中利用$attrs實現組件間的數據傳遞,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

新沂市| 儋州市| 建阳市| 仁怀市| 安化县| 天祝| 深水埗区| 罗甸县| 新河县| 营山县| 邮箱| 夹江县| 乌审旗| 洪雅县| 浑源县| 新化县| 平山县| 扬中市| 冷水江市| 应用必备| 如皋市| 绥芬河市| 龙南县| 县级市| 潞西市| 商南县| 合作市| 灯塔市| 长垣县| 泰宁县| 锡林浩特市| 肃南| 仙游县| 翼城县| 张北县| 临夏县| 红安县| 扎鲁特旗| 淅川县| 历史| 文成县|