系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 网络编程 > JavaScript > 详细页面

vue 使用插槽分发内容操作示例【单个插槽、具名插槽、作用域插槽】

时间:2020-03-06来源:电脑系统城作者:电脑系统城

本文实例讲述了vue 使用插槽分发内容操作。分享给大家供大家参考,具体如下:

单个插槽

除非子组件模板包含至少一个 <slot> 插口,否则父组件的内容将会被丢弃。当子组件模板只有一个没有属性的插槽时,父组件传入的整个内容片段将插入到插槽所在的 DOM 位置,并替换掉插槽标签本身。

最初在 <slot> 标签中的任何内容都被视为备用内容。备用内容在子组件的作用域内编译,并且只有在宿主元素为空,且没有要插入的内容时才显示备用内容

例:


 
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Vue 测试实例 - 单个插槽</title>
  6. <script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
  7. </head>
  8. <body>
  9.  
  10. <div id="example">
  11. <div>
  12. <h1>我是父组件的标题</h1>
  13. <my-component>
  14. <p>这是一些初始内容</p>
  15. <p>这是更多的初始内容</p>
  16. </my-component>
  17. </div>
  18. </div>
  19.  
  20.  
  21. var childNode = {
  22. //当没有<slot>时,父组件的其他内容不会显示,当有<slot>时,要是父组件中的内容不为空,<slot>
  23. //中的内容就不会显示
  24. template: `
  25. <div>
  26. <h2>我是子组件的标题</h2>
  27. <slot>
  28. 只有在没有要分发的内容时才会显示。
  29. </slot>
  30. </div>
  31. `,
  32. };
  33. // 创建根实例
  34. new Vue({
  35. el: '#example',
  36. components: {
  37. 'my-component': childNode
  38. }
  39. })
  40. </script>
  41. </body>
  42. </html>
  43.  

vue 使用插槽分发内容操作示例【单个插槽、具名插槽、作用域插槽】

具名插槽

<slot> 元素可以用一个特殊的特性 name 来进一步配置如何分发内容。多个插槽可以有不同的名字。具名插槽将匹配内容片段中有对应 slot 特性的元素。

仍然可以有一个匿名插槽,它是默认插槽,作为找不到匹配的内容片段的备用插槽。如果没有默认插槽,这些找不到匹配的内容片段将被抛弃。


 
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Vue 测试实例 - 具名插槽</title>
  6. <script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
  7. </head>
  8. <body>
  9.  
  10. <div id="example">
  11. <app-layout>
  12. <h1 slot="header">这里可能是一个页面标题</h1>
  13.  
  14. <p>主要内容的一个段落。</p>
  15. <p>另一个主要段落。</p>
  16.  
  17. <p slot="footer">这里有一些联系信息</p>
  18. </app-layout>
  19. </div>
  20. <script>
  21. Vue.component('app-layout',{
  22. template:'<div class="container">'+
  23. '<header>'+
  24. '<slot name="header"></slot>'+
  25. '</header>'+
  26. '<main>'+
  27. '<slot></slot>'+
  28. '</main>'+
  29. '<footer>'+
  30. '<slot name="footer"></slot>'+
  31. '</footer>'+
  32. '</div>'
  33. })
  34.  
  35. // 创建根实例
  36. new Vue({
  37. el: '#example',
  38.  
  39. })
  40. </script>
  41. </body>
  42. </html>
  43.  

vue 使用插槽分发内容操作示例【单个插槽、具名插槽、作用域插槽】

作用域插槽

作用域插槽是一种特殊类型的插槽,用作一个 (能被传递数据的) 可重用模板,来代替已经渲染好的元素。

在子组件中,只需将数据传递到插槽,就像你将 prop 传递给组件一样:


 
  1. <div class="child">
  2. <slot text="hello from child"></slot>
  3. </div>
  4.  

在父级中,具有特殊特性 slot-scope 的 <template> 元素必须存在,表示它是作用域插槽的模板。slot-scope 的值将被用作一个临时变量名,此变量接收从子组件传递过来的 prop 对象:

在 2.5.0+,slot-scope 能被用在任意元素或组件中而不再局限于 <template>。


 
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Vue 测试实例 - 作用域插槽</title>
  6. <script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
  7. </head>
  8. <body>
  9.  
  10. <div id="example">
  11. <parent-com></parent-com>
  12. </div>
  13. <script>
  14. Vue.component('child-com',{
  15. template:'' +
  16. '<ul>' +
  17. ' <slot name="child-ul" v-for="item in animal" v-bind:text="item.name"></slot>' +
  18. '</ul>',
  19. data:function(){
  20. return {
  21. animal:[
  22. {name:'大象'},
  23. {name:'小狗'},
  24. {name:'小猫'},
  25. {name:'老虎'}
  26. ]
  27. }
  28. }
  29. });
  30. //父组件
  31. // 在父组件的模板里,使用一个Vue自带的特殊组件<template> ,
  32. // 并在该组件上使用scope属性,值是一个临时的变量,存着的是由子组件传过来的
  33. // prop对象,在下面的例子中我把他命名为props。
  34. // 获得由子传过来的prop对象。这时候,父组件就可以访问子组件在自定义属性上暴露的数据了。
  35. Vue.component('parent-com',{
  36. template:'' +
  37. '<div class="container">' +
  38. '<p>动物列表</p>' +
  39. '<child-com>' +
  40. ' <template scope="props" slot="child-ul">' +
  41. ' <li class="child-ul">{{ props.text }}</li>' +
  42. ' </template>' +
  43. '</child-com>' +
  44. '</div>'
  45. });
  46.  
  47. // 创建根实例
  48. new Vue({
  49. el: '#example',
  50.  
  51. })
  52. </script>
  53. </body>
  54. </html>
  55.  

希望本文所述对大家vue.js程序设计有所帮助。

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载