Vue content distribution slot

Jennifer Aniston
Release: 2017-08-19 10:13:31
Original
1652 people have browsed it

Previous words

In order for components to be composed, a way is needed to mix the content of the parent component with the child component's own template. This process is calledContent Distribution(or "transclusion"). Vue implements a content distribution API, referring to the current draft web component specification, using the specialelement as the slot for the original content. This article will introduce in detail the Vue content distribution slot

Compilation scope

Before going deep into the content distribution API, first clarify in which scope the content is compiled. Assume that the template is

 {{ message }} 
Copy after login

Should messagebe bound to the data of the parent component or to the data of the child component? The answer is parent components. Component scope simply means: the content of the parent component template is compiled in the parent component scope; the content of the child component template is compiled in the child component scope.

A common mistake is to try to bind a directive to a child component property/method within the parent component template:

 
Copy after login

AssumptionsomeChildPropertyis a property of the child component, the above example will not work as expected. The parent component template should not know the state of the child component

If you want to bind a scoped directive to the root node of a component, you should do it on the component's own template:

Vue.component('child-component', { // 有效,因为是在正确的作用域内 template: '

Child

', data: function () { return { someChildProperty: true } } })
Copy after login

Similarly, distributed content is compiled in the parent scope

Discarded by default

Generally, if the child component template does not containSocket, the content of the parent component will bediscarded

##

var parentNode = { template: ` 

父组件

测试内容

`, components: { 'child': childNode }, };
Copy after login
Copy after login

Copy after login

As shown in the figure below, the

test content

contained in is discarded

##Anonymous slot

When the child component template has only one slot without attributes, the entire content fragment of the parent component will be inserted into the DOM location where the slot is located, and the slot tag itself will be replaced

var childNode = { template: ` 

子组件

`, };
Copy after login

var parentNode = { template: ` 

父组件

测试内容

`, components: { 'child': childNode }, };
Copy after login
Copy after login

## If there is more than 1 anonymous slot, vue will report an error

var childNode = { template: ` 

子组件

`, };
Copy after login

[Default value]

Initially in the

tag Any content is considered

fallback content, otherwise known as the default value. Alternate content is compiled within the scope of the child component, and is displayed only when the host element is empty and there is no content to be insertedWhen the slot has a default value and the parent element is in When there is no content to be inserted, the default value

var childNode = { template: ` 

子组件

我是默认值

`, }; var parentNode = { template: `

父组件

`, components: { 'child': childNode }, };
Copy after login

## is displayed. When the slot has a default value and the parent element is in < When there is content to be inserted in child>, the setting value is displayed

var childNode = { template: ` 

子组件

我是默认值

`, }; var parentNode = { template: `

父组件

我是设置值

`, components: { 'child': childNode }, };
Copy after login

Named Slot

 The

element can use a special attribute

name

to configure how content is distributed. Multiple slots can have different names. Named slot will match elements in the content fragment that have the correspondingslotattribute

var childNode = { template: ` <p class="child"> <p>子组件</p> <slot name="my-header">头部默认值</slot> <slot name="my-body">主体默认值</slot> <slot name="my-footer">尾部默认值</slot> </p> `, };
Copy after login

var parentNode = { template: ` 

父组件

我是头部

我是尾部

`, components: { 'child': childNode }, };
Copy after login

There can still be an anonymous slot, which is the

default slot, as a backup slot if no matching content fragment is found. Anonymous slots can only be used as slots for elements without slot attributes. Elements with slot attributes will be discarded if they are not configured with slots

var childNode = { template: ` 

子组件

主体默认值

`, };
Copy after login

var parentNode = { template: ` 

父组件

我是主体

我是其他内容

我是尾部

`, components: { 'child': childNode }, };
Copy after login
Copy after login

Insert into ,

I am other content

Insert into , and

is discarded

If there is no default slot, these matching content cannot be found Fragments will also be discarded

var childNode = { template: ` 

子组件

主体默认值

`, };
Copy after login

##

var parentNode = { template: ` 

父组件

我是主体

我是其他内容

我是尾部

`, components: { 'child': childNode }, };
Copy after login
Copy after login

I am other content

and

are abandoned

作用域插槽

  作用域插槽是一种特殊类型的插槽,用作使用一个 (能够传递数据到) 可重用模板替换已渲染元素。

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

Copy after login

  在父级中,具有特殊属性scope