vue2中的slot

最简单的组件

初始化Vue实例之前,使用`Vue.component`方法注册一个简单的template,在HTML中,就可以直接使用。因为这里会举一连串的例子,就直接用`one`、`two`、`three`来作为组件名称了。

<body>
    <div id="app">
        <one></one>
    </div>
</body>
Vue.component(‘one‘, {
    template: ‘<li>这是一个item</li>‘
})

var app = new Vue({
    el: ‘#app‘
})

组件名称定义的时候有一点需要注意的,就是要使用中划线分词。比方说,我想新建一个叫list item的组件,组件的名称就需要是`list-item`,在HTML中使用的时候也一样:

<div id="app">
    <list-item></list-item>
</div>
Vue.component(‘list-item‘, {
    template: ‘<li>这是一个item</li>‘
})

组件的内容可以从数据获取吗?

可以。在组件的data方法里面返回数据就可以了。跟Vue实例不一样的是,组件的data对应一个function,在组件中想要用到的数据,需要从这个方法里面返回(返回的数据类型是对象)。

<div id="app">
    <two></two>
</div>
Vue.component(‘two‘, {
    template: ‘<li>{{ listItem.name }}</li>‘,
    data: function () {
        return {
            // 在html中引入gamesDB.js
            listItem: window.games[0]
        }
    }
})
组件的内容可以在HTML里面定义吗?

可以。在组件中使用`<slot>`吧。在HTML的组件中间定义的内容,就会被插入到`<slot>` tag的位置中去。除了直接定义文字之外,当然也可以写HTML。
<div id="app">
    <three>item1</three>
    <three>item2</three>
    <three>item3</three>
</div>
Vue.component(‘three‘, {
    template: ‘<li><slot></slot></li>‘
})
在没有定义组件内容的时候,可以有默认的内容吗?

可以。在`<slot>` tag中间设置的内容,就是默认的内容。
<div id="app">
    <four></four>
    <four>这是自定义的内容</four>
</div>
Vue.component(‘three‘, {
    template: ‘<li><slot>默认内容</slot></li>‘
})

如果我想在不同的位置插入不同的内容呢?

使用具名`<slot>`吧。在template里面设置好每个slot的名称,在HTML中通过`slot`属性指定内容要插入到哪个具名`<slot>`中。详情请看下面的代码片段和注释。

<div id="app">
    <five>
        <!-- 指定要插入header这个slot中 -->
        <ul slot="header" class="nav nav-tabs">
          <li class="active"><a href="#">Home</a></li>
          <li><a href="#">Profile</a></li>
          <li><a href="#">Messages</a></li>
        </ul>

        <!-- 指定要插入content这个slot中 -->
        <div slot="content">this is my awesome website</div>
    </five>
</div>
Vue.component(‘five‘, {
    template:
        ‘<div>‘ +
            ‘<div class="top-nav">‘ +
                // 设置slot的名称为header
                ‘<slot name="header"></slot>‘ +
            ‘</div>‘ +
            ‘<div class="main">‘ +
                // 设置slot的名称为content
                ‘<slot name="content"></slot>‘ +
            ‘</div>‘ +
        ‘</div>‘
})
图片中选中的这一行,因为在HTML中指定slot的时候使用了`div` tag所以文字被它包了起来,如果希望直接插入文字,可以使用`template`这个tag:
<div id="app">
    <five>
        <ul slot="header" class="nav nav-tabs">
            <!-- ... -->
        </ul>

        <!-- 改为使用template tag -->
        <template slot="content">this is my awesome website</template>
    </five>
</div>

既然组件相当于自定义了一个tag,那可以自定义tag的属性吗?

可以的。使用`component`的`props`来设置吧。这里有一点千万要记得,在`props`里面,是驼峰式分词,但是,在HTML里面使用这个属性的时候,需要用中划线分词,是中!划!线!我最开始使用的时候,两边都习惯性地使用驼峰,结果死活没有效果。

<div id="app">
    <six user-name="john"></six>
</div>

Vue.component(‘six‘, {
    props: [‘userName‘],
    template: ‘<li>{{ userName }}</li>‘
})

从属性传入的数据,组件内可以进行处理吗?

可以。我们用计算属性做例子吧。把属性设定的文字转换为全大写。

<div id="app">
    <six user-name="john"></six>
</div>

Vue.component(‘six‘, {
    props: [‘userName‘],
    // 最后template中使用的是计算属性
    template: ‘<li>{{ uppercaseName }}</li>‘,
    computed: {
        uppercaseName: function() {
            return this.userName.trim().toUpperCase()
        }
    }
})

这些自定义的属性也可以用v-bind指令吗?

YES!直接用官方的一个双向数据绑定的例子吧:

<div id="app">
    <input type="text" v-model="inputMsg" />
    </br>
    <six :user-name="inputMsg"></six>
</div>

Vue.component(‘six‘, {
    props: [‘userName‘],
    template: ‘<li>{{ uppercaseName }}</li>‘,
    computed: {
        uppercaseName: function() {
            return this.userName.trim().toUpperCase()
        }
    }
})

var app = new Vue({
    el: ‘#app‘,
    data: {
        inputMsg: ‘‘
    }
})

可以在组件里面直接使用另外一个组件吗?

当然可以。我们直接上例子吧:

<div id="app">
    <game-list></game-list>
</div>

Vue.component(‘game-list‘, {
    template:
        ‘<ul>‘ +
            // 直接使用第三个组件进行循环
            ‘<three v-for="game in games">{{ game.name }}</three>‘ +
        ‘</ul>‘,
    data: function () {
        return {
            games: window.games
        }
    }
})
				
时间: 2024-10-11 22:29:38

vue2中的slot的相关文章

vue中的slot理解和使用

最近被vue 搞得一塌糊涂,理解的比较慢,工作进度进度要求太快,需求理解不明,造成了很大的压力. 在理解Vue中的Slot的时候看了网上的相关内容,看了半天没看到明白说的是什么,然后自己就安装了vue的相关环境,创建了一个项目,实际动手看看是什么东西, 现理解为: 用父组件的内容去替换掉子组件的内容: 根据父组件中的 <div slot="slot1">slottest</div> 如果引入的子组件中有 <slot name="slot1&quo

vue中的slot与slot-scope

深入理解vue中的slot与slot-scope vue+element-ui+slot-scope或原生实现可编辑表格 原文地址:https://www.cnblogs.com/knuzy/p/9485951.html

Vue中的slot(占坑,预留位置)

子模板不使用slot 子模板使用slot 子模板使用使用name属性,且传递data 文件名:Slots.vue //slot组件 <template> <div class="Slots"> <div class="myd"> 在子组件中不使用slot时SlotChildwithnoslots下的内容不会显示 <SlotChildwithnoslots> <div class="no-name&quo

QT中使用 slot 传递 opencv 中得Mat对象以及 使用多线程集成开源代码。

关于 slot传递 Mat 对象 以前一直是使用 Qtimer 定时器,设定超时后读取 dialog 对象的 Mat成员实现在 UI 里显示图像,发现这样对以后集成其他面向过程的代码增加了复杂度. 所以考虑使用 slot 即使用多线程处理图像后,发送 signal 给 dialog对象,dialog中 connect 他们就行了. 子线程.cpp ... for(;;){ ... emit imageChanged (labelImg); ... } emit finished(); ... d

VUE2中文文档:组件基础篇

组件基础 组件(component),是具有 name 名称的可复用 Vue 实例:当前示例中是 <button-counter>.我们可以使用 new Vue 创建出一个 Vue 根实例,然后将这个组件作为其中的一个自定义元素(custom element). 由于组件是可复用的 Vue 实例,它们接收的选项,和在 new Vue 时候的选项相同,例如 data, computed, watch, methods 和生命周期钩子.唯一的例外是,类似 el 这样,根实例上特有(root-spe

VUE2中文文档:进入、离开和列表过度

进入.离开和列表的过渡 概述 当从 DOM 中插入.更新或移除项目时,Vue 提供多种应用过渡效果的方式.包括以下工具: 在 CSS 过渡和动画中自动处理 class 可以配合使用第三方 CSS 动画库,如 Animate.css 在过渡钩子函数中使用 JavaScript 直接操作 DOM 可以配合使用第三方 JavaScript 动画库,如 Velocity.js 单元素/组件的过渡 Vue 提供了 transition 外层包裹容器组件(wrapper component),可以给下列情形

Vue中插槽slot的使用

插槽,也就是slot,是组件的一块HTML模板,这块模板显示不显示.以及怎样显示由父组件来决定. 实际上,一个slot最核心的两个问题在这里就点出来了,是显示不显示和怎样显示. 由于插槽是一块模板,所以,对于任何一个组件,从模板种类的角度来分,其实都可以分为非插槽模板和插槽模板两大类. 非插槽模板指的是html模板,比如‘div.span.ul.table’这些,非插槽模板的显示与隐藏以及怎样显示由组件自身控制: 插槽模板是slot,它是一个空壳子,因为它的显示与隐藏以及最后用什么样的html模

深入理解vue中的slot与slot-scope

<template> <div class="father"> <h3>这里是父组件</h3> <child> <div class="tmpl"> <span>菜单1</span> <span>菜单2</span> <span>菜单3</span> <span>菜单4</span> <span

在vue2中使用百度或者谷歌地图

在vue项目的开发过程中,我们会需要用到地图显示功能,那么如何在vue项目中引用百度地图或者谷歌地图呢?下面是我自己在开发过程中的引用方式,如果有更好的方式,欢迎提出. 一.在index.html文件的头部引入地图 其中src是引入地图的url,ak是你在地图官网申请的开发者公钥 二.在webpack.base.conf.js文件中的module.exports添加配置 externals:{ 'BMap': 'BMap' } 三.执行npm install 四.在需要地图的组件内import