Home > Web Front-end > JS Tutorial > body text

The specific usage of slot and slot-scope in vue

小云云
Release: 2018-05-14 17:22:36
Original
5853 people have browsed it

This article mainly introduces the specific use of slot and slot-scope in vue. The editor thinks it is quite good. Now I will share it with you and give you a reference. Let’s follow the editor to take a look, I hope it can help everyone.

Written before

The documentation about slots in vue is very short, and the language is very concise, plus its and Differences in the frequency and order of use of common options such as methods, data, computed, etc. may cause developers who are new to slots to easily think "Forget it, learn it later, you can already write basic components anyway", so Just close the vue documentation.

In fact, the concept of slots is very simple. Let’s talk about it in three parts. This part is also written in the order of the vue documentation.

Before entering the third part, let students who have not been exposed to slots have a simple concept of what a slot is: a slot, also known as a slot, is an HTML template of a component. This template displays Whether or not to display and how to display it is determined by the parent component. In fact, the two core issues of a slot are highlighted here, which are whether to display it and how to display it.

Since the slot is a template, any component can actually be divided into two categories: non-slot templates and slot templates from the perspective of template type.

Non-slot templates refer to html templates, which refer to 'p, span, ul, table', etc. The display and hiding of non-slot templates and how to display them are controlled by the plug-in itself; plug-in The slot template is a slot, which is an empty shell, because its display and hiding and the final html template used to display are controlled by the parent component. However, the position of the slot display is indeed determined by the sub-component itself. Where the slot is written in the component template, the template passed from the parent component will be displayed in the future.

Single slot|Default slot|Anonymous slot

The first is a single slot. A single slot is the official name of vue, but in fact It can also be called a default slot, or as opposed to a named slot, we can call it an anonymous slot. Because it does not need to set the name attribute.

A single slot can be placed anywhere in the component, but as its name suggests, there can only be one slot of this type in a component. Correspondingly, there can be many named slots, as long as the names (name attribute) are different.

The following is an example.

Parent component:

<template>
 <p class="father">
  <h3>这里是父组件</h3>
  <child>
   <p class="tmpl">
    <span>菜单1</span>
    <span>菜单2</span>
    <span>菜单3</span>
    <span>菜单4</span>
    <span>菜单5</span>
    <span>菜单6</span>
   </p>
  </child>
 </p>
</template>
Copy after login

Child component:

<template>
 <p class="child">
  <h3>这里是子组件</h3>
  <slot></slot>
 </p>
</template>
Copy after login

In this example, because the parent component writes the html template in , Then the template for the anonymous slot of the subcomponent is as follows. In other words, the anonymous slot of the subcomponent is used by the template below.

<p class="tmpl">
 <span>菜单1</span>
 <span>菜单2</span>
 <span>菜单3</span>
 <span>菜单4</span>
 <span>菜单5</span>
 <span>菜单6</span>
</p>
Copy after login

The final rendering result is as shown in the figure:

Note: All demos have been styled for easier observation. Among them, the parent component is filled with a gray background, and the child components are filled with a light blue background.

Named slot

Anonymous slot does not have a name attribute, so it is an anonymous slot. Then, if the name attribute is added to the slot, it becomes a named slot. . A named slot can appear N times in a component. Appear in different locations. The following example is a component with two named slots and a single slot. These three slots are displayed by the parent component using the same set of CSS styles, but the content is slightly different.

Parent component:

<template>
 <p class="father">
 <h3>这里是父组件</h3>
 <child>
  <p class="tmpl" slot="up">
  <span>菜单1</span>
  <span>菜单2</span>
  <span>菜单3</span>
  <span>菜单4</span>
  <span>菜单5</span>
  <span>菜单6</span>
  </p>
  <p class="tmpl" slot="down">
  <span>菜单-1</span>
  <span>菜单-2</span>
  <span>菜单-3</span>
  <span>菜单-4</span>
  <span>菜单-5</span>
  <span>菜单-6</span>
  </p>
  <p class="tmpl">
  <span>菜单->1</span>
  <span>菜单->2</span>
  <span>菜单->3</span>
  <span>菜单->4</span>
  <span>菜单->5</span>
  <span>菜单->6</span>
  </p>
 </child>
 </p>
</template>
Copy after login

Child component:

<template>
 <p class="child">
 // 具名插槽
 <slot name="up"></slot>
 <h3>这里是子组件</h3>
 // 具名插槽
 <slot name="down"></slot>
 // 匿名插槽
 <slot></slot>
 </p>
</template>
Copy after login

The display result is as shown in the figure:

You can see that the parent component is uploaded through the html template The slot attribute associates the named slot. HTML templates without slot attributes are associated with anonymous slots by default.

Scope slot | Slot with data

Finally, there is our scope slot. This one is a little harder to understand. Officially, it is called a scope slot. In fact, compared with the previous two slots, we can call it a slot with data. What does it mean? The first two are written in the template of the component.

Anonymous slot

<slot></slot>
Copy after login

Named slot

<slot name="up"></slot>
Copy after login

But the scope slot requires, Bind data to the slot. That is to say, you have to write it roughly like the following.

<slot name="up" :data="data"></slot>
 export default {
 data: function(){
  return {
  data: [&#39;zhangsan&#39;,&#39;lisi&#39;,&#39;wanwu&#39;,&#39;zhaoliu&#39;,&#39;tianqi&#39;,&#39;xiaoba&#39;]
  }
 },
}
Copy after login

As we said before, whether the slot is displayed at the end depends on whether the parent component has written a template under the child, as shown below.

<child>
 html模板
</child>
Copy after login

If it is written, the slot must display something on the browser. The thing is what HTML should look like. If it is not written, the slot is just an empty shell with nothing.
OK, when we say that there is an html template, it means that the parent component will insert the template into the child component. So what kind of style should be inserted? This is jointly determined by the html+css of the parent component, but this set What about the content inside the style?

Because the scope slot is bound to a set of data, the parent component can use it. So, the situation becomes like this: the parent component has the final say in style, but the content can display the slot binding of the child component.

我们再来对比,作用域插槽和单个插槽和具名插槽的区别,因为单个插槽和具名插槽不绑定数据,所以父组件是提供的模板要既包括样式由包括内容的,上面的例子中,你看到的文字,“菜单1”,“菜单2”都是父组件自己提供的内容;而作用域插槽,父组件只需要提供一套样式(在确实用作用域插槽绑定的数据的前提下)。

下面的例子,你就能看到,父组件提供了三种样式(分别是flex、ul、直接显示),都没有提供数据,数据使用的都是子组件插槽自己绑定的那个人名数组。

父组件:

<template>
 <p class="father">
 <h3>这里是父组件</h3>
 <!--第一次使用:用flex展示数据-->
 <child>
  <template slot-scope="user">
  <p class="tmpl">
   <span v-for="item in user.data">{{item}}</span>
  </p>
  </template>

 </child>

 <!--第二次使用:用列表展示数据-->
 <child>
  <template slot-scope="user">
  <ul>
   <li v-for="item in user.data">{{item}}</li>
  </ul>
  </template>

 </child>

 <!--第三次使用:直接显示数据-->
 <child>
  <template slot-scope="user">
  {{user.data}}
  </template>

 </child>

 <!--第四次使用:不使用其提供的数据, 作用域插槽退变成匿名插槽-->
 <child>
  我就是模板
 </child>
 </p>
</template>
Copy after login

子组件:

<template>
 <p class="child">

 <h3>这里是子组件</h3>
 // 作用域插槽
 <slot :data="data"></slot>
 </p>
</template>

 export default {
 data: function(){
  return {
  data: [&#39;zhangsan&#39;,&#39;lisi&#39;,&#39;wanwu&#39;,&#39;zhaoliu&#39;,&#39;tianqi&#39;,&#39;xiaoba&#39;]
  }
 }
}
Copy after login

结果如图所示:

相关推荐:

vue.js数据传递以及数据分发slot实例详解

Vue内容分发slot

js组件SlotMachine实现图片切换效果制作抽奖系统_javascript技巧

The above is the detailed content of The specific usage of slot and slot-scope in vue. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!