溫馨提示×

溫馨提示×

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

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

怎么在Vue.js中使用props傳遞數(shù)據(jù)

發(fā)布時間:2021-03-23 16:05:28 來源:億速云 閱讀:129 作者:Leah 欄目:web開發(fā)

本篇文章給大家分享的是有關(guān)怎么在Vue.js中使用props傳遞數(shù)據(jù),小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

基本用法

通常父組件的模板中包含子組件,父組件要正向地向子組件傳遞數(shù)據(jù)或參數(shù),子組件接收到后根據(jù)參數(shù)的不同來渲染不同的內(nèi)容或執(zhí)行操作。這個正向傳遞數(shù)據(jù)的過程就是通過props來實現(xiàn)的。

在組件中,使用選項props來聲明需要從父級接收的數(shù)據(jù),props的值可以是兩種,一種是字符串?dāng)?shù)組,一種是對象。

示例:構(gòu)造一個數(shù)組,接收一個來自父組件的message,并把它再組件模板中渲染

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <script src="https://unpkg.com/vue/dist/vue.js"></script>
  <title>props</title>
</head>
<body>
  <div id="myApp">
    <my-component message="來自父組件的數(shù)據(jù)"></my-component>
  </div>
  <script>
    Vue.component('my-component',{
      props: ['message'],
      template: '<div>{{message}}</div>'
    });

    var myApp = new Vue({
      el: '#myApp'
    });
  </script>
</body>
</html>

props中聲明的數(shù)據(jù)與組件函數(shù)return的數(shù)據(jù)主要區(qū)別是:**props的數(shù)據(jù)來自父級,而data中的數(shù)據(jù)是組件自己的數(shù)據(jù),作用域是組件本身。**這兩種數(shù)據(jù)都可以在模板template及計算屬性computed和方法methods中使用。

上例的數(shù)據(jù)message就是通過props從父級傳遞過來的,在組件的字的那個一標(biāo)簽上直接寫該props的名稱,如果要傳遞多個數(shù)據(jù),在props數(shù)組中添加項即可。

注意:由于HTML特性不區(qū)分大小寫,當(dāng)使用DOM模板時,駝峰命名的props名稱要轉(zhuǎn)為短橫分割命名,例如:

<div id="app">
    <my-component warning-text="提示信息"></my-component>
</div>
<script>
//如果使用字符串模板,可以忽略這些限制
  Vue.component('my-component',{
    props: ['warningText'],
    template: '<div>{{warningText}}</div>'
  });

  var app = new Vue({
    el: '#app'
  });
</script>

有時候,傳遞的數(shù)據(jù)并不是直接寫死的,而是來自父級的動態(tài)數(shù)據(jù),這時候可以使用指令v-bing來動態(tài)綁定props的值,當(dāng)父組件的數(shù)據(jù)變化時,也會傳遞給子組件。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <script src="https://unpkg.com/vue/dist/vue.js"></script>
  <title>動態(tài)綁定</title>
</head>
<body>
  <div id="app">
    <input type="text" v-model="parentMessage">
    <my-component :message="parentMessage"></my-component>
  </div>
  <script>
    Vue.component('my-component',{
      props: ['message'],
      template: '<div>{{message}}</div>'
    });

    var app = new Vue({
      el: '#app',
      data: {
        parentMessage: ''
      }
    });
  </script>
</body>
</html>

怎么在Vue.js中使用props傳遞數(shù)據(jù)

以上就是怎么在Vue.js中使用props傳遞數(shù)據(jù),小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降摹OM隳芡ㄟ^這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI