中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

怎么在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

嘉义市| 手游| 伊宁市| 通化市| 西贡区| 钦州市| 沅陵县| 黑龙江省| 贵溪市| 阿拉善左旗| 荃湾区| 临城县| 东山县| 大方县| 萨嘎县| 阿拉善右旗| 荆门市| 贺州市| 西安市| 班玛县| 迁西县| 高淳县| 浦东新区| 宁津县| 蚌埠市| 芜湖县| 峨山| 乌鲁木齐县| 盘山县| 翼城县| 宜良县| 南澳县| 西盟| 嘉善县| 延川县| 鹰潭市| 兴安盟| 虞城县| 曲阳县| 隆回县| 大方县|