vue Render scopedSlots

简介:

render 中 slot 的一般默认使用方式如下:

this.$slots.default 对用 template的<slot>的使用没有name 。

想使用多个slot 的话。需要对slot命名唯一。使用this.$slots.name 在render中添加多个slot。

[html]  view plain  copy
 
  1. <body>  
  2.     <div class="" id="app">  
  3.     <myslot>  
  4.         <div>this is slot</div>  
  5.     </myslot>  
  6.   
  7.   
  8.     </div>  
  9.     <script>  
  10.     Vue.component('myslot',{  
  11.         render:function(createElement){  
  12.              var he=createElement('div',{domProps:{innerHTML:'this child div'}});  
  13.             return createElement('div',[he,this.$slots.default])  
  14.             }  
  15.     });  
  16.     var app=new Vue({  
  17.         el:'#app'  
  18.     })  
  19.     </script>  
  20.     </body>   

多个slot的使用

 

[html]  view plain  copy
 
  1. <body>  
  2.     <div class="" id="app">  
  3.     <myslot>  
  4.         <div slot="name1">this is slot</div>  
  5.         <div slot="name2">The position is slot2 </div>  
  6.     </myslot>  
  7.   
  8.   
  9.     </div>  
  10.     <script>  
  11.     Vue.component('myslot',{  
  12.         render:function(createElement){  
  13.              var he=createElement('div',{domProps:{innerHTML:'this child div'}});  
  14.             return createElement('div',[he,this.$slots.name2,this.$slots.name1])  
  15.             }  
  16.     });  
  17.     var app=new Vue({  
  18.         el:'#app'  
  19.     })  
  20.     </script>  
  21.     </body>  


在vue2.1.0新添加了scope(虽然感觉有点怪,但是用习惯了,还蛮好用的)

 

同样给出一般使用和多个使用示例,

 

[html]  view plain  copy
 
  1. <body>  
  2.     <div class="" id="app">  
  3.     <myslot>  
  4.         <template scope="props">  
  5.             <div>{{props.text}}</div>  
  6.         </template>  
  7.   
  8.     </myslot>  
  9.   
  10.   
  11.     </div>  
  12.     <script>  
  13.     Vue.component('myslot',{  
  14.         render:function(createElement){  
  15.              var he=createElement('div',{domProps:{innerHTML:'this child div'}});  
  16.             return createElement('div',[he,this.$scopedSlots.default({  
  17.                 text:'hello scope'  
  18.             })])  
  19.             }  
  20.     });  
  21.     var app=new Vue({  
  22.         el:'#app'  
  23.     })  
  24.     </script>  
  25.     </body>  



 

多个$scopedSlot的使用

 

[html]  view plain  copy
 
    1. <body>  
    2.     <div class="" id="app">  
    3.     <myslot>  
    4.         <template slot="name2" scope="props">  
    5.             <div>{{props.text}}</div>  
    6.         </template>  
    7.         <template slot="name1" scope="props">  
    8.             <span>{{props.text}}</span>  
    9.         </template>  
    10.   
    11.     </myslot>  
    12.   
    13.   
    14.     </div>  
    15.     <script>  
    16.     Vue.component('myslot',{  
    17.         render:function(createElement){  
    18.              var he=createElement('div',{domProps:{innerHTML:'this child div'}});  
    19.             return createElement('div',  
    20.                 [he,  
    21.                 this.$scopedSlots.name1({  
    22.                 text:'hello scope'  
    23.             }),  
    24.                 this.$scopedSlots.name2({  
    25.                 text:'$scopedSlots using'  
    26.             })])  
    27.             }  
    28.     });  
    29.     var app=new Vue({  
    30.         el:'#app'  
    31.     })  
    32.     </script>  
    33.     </body>  

本文转自农夫山泉别墅博客园博客,原文链接:http://www.cnblogs.com/yaowen/p/7111757.html,如需转载请自行联系原作者
相关文章
|
4天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发
|
4天前
|
存储 JavaScript
Vue 状态管理工具vuex
Vue 状态管理工具vuex
|
10天前
|
缓存 JavaScript UED
Vue 中实现组件的懒加载
【10月更文挑战第23天】组件的懒加载是 Vue 应用中提高性能的重要手段之一。通过合理运用动态导入、路由配置等方式,可以实现组件的按需加载,减少资源浪费,提高应用的响应速度和用户体验。在实际应用中,需要根据具体情况选择合适的懒加载方式,并结合性能优化的其他措施,以打造更高效、更优质的 Vue 应用。
|
9天前
|
JavaScript
如何在 Vue 中使用具名插槽
【10月更文挑战第25天】通过使用具名插槽,你可以更好地组织和定制组件的模板结构,使组件更具灵活性和可复用性。同时,具名插槽也有助于提高代码的可读性和可维护性。
14 2
|
9天前
|
JavaScript
Vue 中的插槽
【10月更文挑战第25天】插槽的使用可以大大提高组件的复用性和灵活性,使你能够根据具体需求在组件中插入不同的内容,同时保持组件的结构和样式的一致性。
12 2
|
9天前
|
前端开发 JavaScript 容器
在 vite+vue 中使用@originjs/vite-plugin-federation 模块联邦
【10月更文挑战第25天】模块联邦是一种强大的技术,它允许将不同的微前端模块组合在一起,形成一个统一的应用。在 vite+vue 项目中,使用@originjs/vite-plugin-federation 模块联邦可以实现高效的模块共享和组合。通过本文的介绍,相信你已经了解了如何在 vite+vue 项目中使用@originjs/vite-plugin-federation 模块联邦,包括安装、配置和使用等方面。在实际开发中,你可以根据自己的需求和项目的特点,灵活地使用模块联邦,提高项目的可维护性和扩展性。
|
10天前
|
JavaScript 前端开发 UED
vue 提高 tree shaking 的效果
【10月更文挑战第23天】提高 Vue 中 Tree shaking 的效果需要综合考虑多个因素,包括模块的导出和引用方式、打包工具配置、代码结构等。通过不断地优化和调整,可以最大限度地发挥 Tree shaking 的优势,为 Vue 项目带来更好的性能和用户体验。
|
10天前
|
缓存 JavaScript UED
Vue 中异步加载模块的方式
【10月更文挑战第23天】这些异步加载模块的方式各有特点和适用场景,可以根据项目的需求和架构选择合适的方法来实现模块的异步加载,以提高应用的性能和用户体验
|
10天前
|
JavaScript 测试技术 UED
解决 Vue 项目中 Tree shaking 无法去除某些模块
【10月更文挑战第23天】解决 Vue 项目中 Tree shaking 无法去除某些模块的问题需要综合考虑多种因素,通过仔细分析、排查和优化,逐步提高 Tree shaking 的效果,为项目带来更好的性能和用户体验。同时,持续关注和学习相关技术的发展,不断探索新的解决方案,以适应不断变化的项目需求。
|
11天前
|
JavaScript 搜索推荐 前端开发
Vue SSR 预渲染的广泛应用场景及其优势
【10月更文挑战第23天】Vue SSR 预渲染技术在众多领域都有着广泛的应用价值,可以显著提升网站的性能、用户体验和搜索引擎优化效果。随着技术的不断发展和完善,其应用场景还将不断拓展和深化
27 2