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

溫馨提示×

溫馨提示×

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

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

如何在vue中使用slot插槽

發布時間:2021-03-30 16:52:00 來源:億速云 閱讀:194 作者:Leah 欄目:web開發

如何在vue中使用slot插槽?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

<!DOCTYPE html>
<html lang="en">

<head>
 <meta charset="UTF-8">
 <title>Document</title>
 <script src="https://unpkg.com/vue@2.3.3/dist/vue.js"></script>
</head>

<body>
 <div id="app">
  <div>
   <!-- 單slot -->
   <v-one>
    <!-- 這里的所有內容會替換掉slot -->
    <p>初始化段落一</p>
    <p>初始化段落二</p>
   </v-one>
   <!-- 渲染結果 -->
   <!-- <div>
    <h2>組件標題</h2>
    <p>初始化段落一</p>
    <p>初始化段落二</p>
    <p>組件段落內容</p>
    <p>I am one</p>
   </div> -->


   <!-- 具名slot -->
   <v-two>
    <p slot="nav">我是導航</p>
    <p slot="main">我是內容</p>
    <p slot="footer">我是底部</p>
   </v-two>
   <!-- 渲染結果 -->
   <!-- <div>
    <nav>
     <p>我是導航</p>
    </nav>
    <main>
     <p>我是內容</p>
    </main>
    <footer>
     <p>我是底部</p>
    </footer>
   </div> -->


   <!-- 作用域插槽 -->
   <v-three>
   <!-- 父組件默認無法使用子組件數據 -->
     <template scope="props">
       <p>{{props.text}}</p>
     </template>
   </v-three>

   <!-- 渲染結果 -->
   <!-- <div><p>I am three</p></div> -->
  </div>
 </div>


 <template id="one">
  <div>
   <h2>組件標題</h2>
   <slot></slot>
   <p>組件段落內容</p>
   <p>{{one}}</p>
  </div>
 </template>


 <!-- 具名slot -->
 <template id="two">
  <div>
   <nav>
    <slot name="nav"></slot>
   </nav>
   <main>
    <slot name="main"></slot>
   </main>
   <footer>
    <slot name="footer"></slot>
   </footer>
  </div>
 </template>

<!-- 作用域插槽 -->
 <template id="three">
  <div>
    <!-- 把數據傳遞給slot,這樣父組件也可以訪問three這個組件的數據 -->
   <slot :text="three"></slot>
  </div>
 </template>
 <script>
 new Vue({
  el: '#app',
  components: {
   'v-one': {
    template: '#one',
    data() {
     return {
      'one': 'I am one'
     }
    }
   },
   'v-two': {
    template: '#two',
    data() {
     return {
      'two': 'I am two'
     }
    }
   },
   'v-three': {
    template: '#three',
    data() {
     return {
      'three': 'I am three'
     }
    }
   }
  }
 });
 </script>
</body>

</html>

單個slot使用最簡單,也是最常用的,當我們定義了一個子組件,父組件在使用的這個組件的時候,想在內部自定義一些初始化數據,這時候就可以用slot實現。

具名slot只是給slot加了name屬性,在使用的時候可以引入多個。

作用域slot就比較強大了,我們知道子組件的數據,在父組件中是無法使用的,但是通過官方提供的擴展,可以輕松實現這一點。

渲染后效果圖,可以直接自己在瀏覽器運行查看效果

如何在vue中使用slot插槽

關于如何在vue中使用slot插槽問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

邮箱| 连平县| 汉阴县| 万源市| 且末县| 阳曲县| 昌图县| 托克托县| 长治市| 八宿县| 枣阳市| 乌拉特后旗| 南乐县| 海伦市| 攀枝花市| 定陶县| 若羌县| 隆化县| 宿州市| 肃北| 台中县| 论坛| 丰台区| 西宁市| 舒兰市| 平顶山市| 乃东县| 吉隆县| 旺苍县| 莱西市| 交口县| 北川| 沙坪坝区| 奉节县| 淮南市| 盖州市| 白银市| 聂荣县| 平遥县| 威信县| 赤城县|