我是靠谱客的博主 阳光钥匙,最近开发中收集的这篇文章主要介绍vue3 template 的用法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

用法

用作 多标签 v-if判断

具名插槽缩写


用作 多标签 v-if判断

<!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">
  <title>template使用</title>
</head>

<body>
  <div id="app">
    <template v-if="flag">
      <h5>demo1</h5>
      <p>demo1</p>
    </template>

    <template v-else>
      <h5>demo2</h5>
      <p>demo2</p>
    </template>
  </div>
  
  <script src="../lib/vue.js"></script>
  <script>
    var app = new Vue({
      el: '#app',
      data: {
        flag: true,
      }
    })
  </script>
</body>
</html>

具名插槽缩写

<!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">
  <title>具名插槽的缩写</title>
</head>
<body>
  <div id="app">
    <child>
      <template v-slot:demoName>
        替换具名插槽内容
      </template>

      <!-- 
        具名插槽缩写
        详情 
        https://v3.cn.vuejs.org/guide/component-slots.html#%E5%85%B7%E5%90%8D%E6%8F%92%E6%A7%BD%E7%9A%84%E7%BC%A9%E5%86%99
       -->
      <template #demoName>
        替换具名插槽内容
      </template>

    </child>
  </div>
  <script src="../lib/vue.js"></script>
  <script>
    var app = new Vue({
      el: '#app',
      components: {
        child: {
          template: `
          <div>
            <p>我是一行话</p>
            <slot name="demoName">具名插槽内容</slot>
          </div>
          `,
        }
      }
    })
  </script>
</body>
</html>

最后

以上就是阳光钥匙为你收集整理的vue3 template 的用法的全部内容,希望文章能够帮你解决vue3 template 的用法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部