美文网首页
插槽分发内容

插槽分发内容

作者: 嗯哼_3395 | 来源:发表于2018-07-07 15:51 被阅读0次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <script src="vue.js"></script>
</head>
<body>
    <div id="box">
        <!-- <veb>world</veb> -->
        <!-- <veb>{{name}}</veb><!--这个的作用域是根实例  -->
        <!--这个的作用域是veb的实现方法-->
        <!-- <veb>
            
            <template slot-scope="props">
                 {{props.can}}
            </template>
        </veb>   -->
        <veb>       
            <len slot-scope="props">
                {{props.can}}
            </len>
        </veb>
        <f><span slot="aa">你好</span></f>
        <f><span slot="bb">我好</span></f>
    </div>
</body>
    <script>
       Vue.component("veb",{
           data:function(){
               return{
                   name:"哈哈"
               }
           },
           // template:"<h1>hello<slot></slot></h1>"
           template:"<h1>hello<slot :can='name'></slot></h1>"
           // template:"<h1>hello<slot></slot></h1>"
       })
       Vue.component("len",{
           template:"<button>点击我<slot></slot></button>"
       })
       Vue.component("f",{
            //具名槽点
            template:"<button><slot name='bb'></slot></button>"
       })
       var box=new Vue({
          el:"#box",
          data:{
             name:"world" 
          }
       })

    </script>
</html>

相关文章

  • vue 插槽

    插槽语法是Vue实现的内容分发API,用于复合组件开发。 匿名插槽 具名插槽 作用域插槽 将内容分发到子组件指定位置

  • vue学习笔记-插槽(slot)

    定义:实现内容分发API,用于复合组件开发 分类 匿名插槽 具名插槽:将内容分发到组件指定位置 其中匿名插槽,可以...

  • 插槽分发内容

  • slot是什么?有什么作用?原理是什么?

    slot又名插槽,是Vue的内容分发机制,组件内部的模板引擎使用slot元素作为承载分发内容的出口。插槽slot是...

  • slot(插槽)

    slot又称插槽,是Vue的内容分发机制,组件内部的模板引擎使用slot元素作为承载分发内容的出口。插槽slot是...

  • 2020-07-23 一次性讲明白vue插槽slot

    vue插槽slot 一、前言 vue官方文档中在"组件基础"内容中提到组件可以通过插槽分发内容,那插槽是怎么使用的...

  • vue插槽slot

    vue插槽slot 一、前言 vue官方文档中在"组件基础"内容中提到组件可以通过插槽分发内容,那插槽是怎么使用的...

  • slot插槽:内容分发

  • 插槽

    插槽就是Vue实现的一套内容分发的API,将 元素作为承载分发内容的出口。这句话的意思就是,没有插槽的情况下在组...

  • 2-6 vue 匿名插槽-slot

    匿名插槽-slot Slot插槽 —— 实现内容分发 什么是slot?slot的意思是插槽,其目的在于让组件的可扩...

网友评论

      本文标题:插槽分发内容

      本文链接:https://www.haomeiwen.com/subject/ofawuftx.html