Slots Vue.js

Vue.js - The Progressive JavaScript Framework

This page assumes you’ve already read the Components Basics. Read that first if you are new to components.

Watch a free video lesson on Vue School

Slot Content and Outlet ​

We have learned that components can accept props, which can be JavaScript values of any type. But how about template content? In some cases, we may want to pass a template fragment to a child component, and let the child component render the fragment within its own template.

For example, we may have a <FancyButton> component that supports usage like this:

template<FancyButton> Click me! <!– slot content –></FancyButton>The template of <FancyButton> looks like this:

template<button class=“fancy-btn”> <slot></slot> <!– slot outlet –></button>The <slot> element is a slot outlet that indicates where the parent-provided slot content should be rendered.

slot diagram

And the final rendered DOM:

html<button class=“fancy-btn”>Click me!</button>Try it in the Playground

Try it in the Playground

With slots, the <FancyButton> is responsible for rendering the outer <button> (and its fancy styling), while the inner content is provided by the parent component.

Another way to understand slots is by comparing them to JavaScript functions:

js// parent component passing slot contentFancyButton(‘Click me!’)// FancyButton renders slot content in its own templatefunction FancyButton(slotContent) { return &lt;button class="fancy-btn"&gt; ${slotContent} &lt;/button&gt;}Slot content is not just limited to text. It can be any valid template content. For example, we can pass in multiple elements, or even other components:

template<FancyButton> <span style=“color:red”>Click me!</span> <AwesomeIcon name=“plus” /></FancyButton>Try it in the Playground

Try it in the Playground

By using slots, our <FancyButton> is more flexible and reusable. We can now use it in different places with different inner content, but all with the same fancy styling.

Vue components’ slot mechanism is inspired by the native Web Component <slot> element, but with additional capabilities that we will see later.

Render Scope ​

Slot content has access to the data scope of the parent component, because it is defined in the parent. For example:

template<span>{{ message }}</span><FancyButton>{{ message }}</FancyButton>Here both {{ message }} interpolations will render the same content.

Slot content does not have access to the child component’s data. Expressions in Vue templates can only access the scope it is defined in, consistent with JavaScript’s lexical scoping. In other words:

Expressions in the parent template only have access to the parent scope; expressions in the child template only have access to the child scope.

Fallback Content ​

There are cases when it’s useful to specify fallback (i.e. default) content for a slot, to be rendered only when no content is provided. For example, in a <SubmitButton> component:

template<button type=“submit”> <slot></slot></button>We might want the text “Submit” to be rendered inside the <button> if the parent didn’t provide any slot content. To make “Submit” the fallback content, we can place it in between the <slot> tags:

template<button type=“submit”> <slot> Submit <!– fallback content –> </slot></button>Now when we use <SubmitButton> in a parent component, providing no content for the slot:

template<SubmitButton />This will render the fallback content, “Submit”:

html<button type=“submit”>Submit</button>But if we provide content:

template<SubmitButton>Save</SubmitButton>Then the provided content will be rendered instead:

html<button type=“submit”>Save</button>Try it in the Playground

Try it in the Playground

Named Slots

There are times when it’s useful to have multiple slot outlets in a single component. For example, in a <BaseLayout> component with the following template:

template<div class=“container”> <header> <!– We want header content here –> </header> <main> <!– We want main content here –> </main> <footer> <!– We want footer content here –> </footer></div>For these cases, the <slot> element has a special attribute, name, which can be used to assign a unique ID to different slots so you can determine where content should be rendered:

template<div class=“container”> <header> <slot name=“header”></slot> </header> <main> <slot></slot> </main> <footer> <slot name=“footer”></slot> </footer></div>A <slot> outlet without name implicitly has the name “default”.

In a parent component using <BaseLayout>, we need a way to pass multiple slot content fragments, each targeting a different slot outlet. This is where named slots come in.

To pass a named slot, we need to use a <template> element with the v-slot directive, and then pass the name of the slot as an argument to v-slot:

template<BaseLayout> <template v-slot:header> <!– content for the header slot –> </template></BaseLayout>v-slot has a dedicated shorthand #, so <template v-slot:header> can be shortened to just <template #header>. Think of it as “render this template fragment in the child component’s ‘header’ slot”.

named slots diagram

Here’s the code passing content for all three slots to <BaseLayout> using the shorthand syntax:

template<BaseLayout> <template #header> <h1>Here might be a page title</h1> </template> <template #default> <p>A paragraph for the main content.</p> <p>And another one.</p> </template> <template #footer> <p>Here’s some contact info</p> </template></BaseLayout>When a component accepts both a default slot and named slots, all top-level non-<template> nodes are implicitly treated as content for the default slot. So the above can also be written as:

template<BaseLayout> <template #header> <h1>Here might be a page title</h1> </template> <!– implicit default slot –> <p>A paragraph for the main content.</p> <p>And another one.</p> <template #footer> <p>Here’s some contact info</p> </template></BaseLayout>Now everything inside the <template> elements will be passed to the corresponding slots. The final rendered HTML will be:

html<div class=“container”> <header> <h1>Here might be a page title</h1> </header> <main> <p>A paragraph for the main content.</p> <p>And another one.</p> </main> <footer> <p>Here’s some contact info</p> </footer></div>Try it in the Playground

Try it in the Playground

Again, it may help you understand named slots better using the JavaScript function analogy:

js// passing multiple slot fragments with different namesBaseLayout({ header: ..., default: ..., footer: ...})// <BaseLayout> renders them in different placesfunction BaseLayout(slots) { return &lt;div class="container"&gt; &lt;header&gt;${slots.header}&lt;/header&gt; &lt;main&gt;${slots.default}&lt;/main&gt; &lt;footer&gt;${slots.footer}&lt;/footer&gt; &lt;/div&gt;}

Conditional Slots

Sometimes you want to render something based on whether or not a slot is present.

You can use the $slots property in combination with a v-if to achieve this.

In the example below we define a Card component with three conditional slots: header, footer and the default one. When the header / footer / default is present we want to wrap them to provide additional styling:

template<template> <div class=“card”> <div v-if="$slots.header" class=“card-header”> <slot name=“header” /> </div> <div v-if="$slots.default" class=“card-content”> <slot /> </div> <div v-if="$slots.footer" class=“card-footer”> <slot name=“footer” /> </div> </div></template>Try it in the Playground

Dynamic Slot Names ​

Dynamic directive arguments also work on v-slot, allowing the definition of dynamic slot names:

template<base-layout> <template v-slot:dynamicSlotName> … </template> <!– with shorthand –> <template #dynamicSlotName> … </template></base-layout>Do note the expression is subject to the syntax constraints of dynamic directive arguments.

Scoped Slots ​

As discussed in Render Scope, slot content does not have access to state in the child component.

However, there are cases where it could be useful if a slot’s content can make use of data from both the parent scope and the child scope. To achieve that, we need a way for the child to pass data to a slot when rendering it.

In fact, we can do exactly that - we can pass attributes to a slot outlet just like passing props to a component:

template<!– <MyComponent> template –><div> <slot :text=“greetingMessage” :count=“1”></slot></div>Receiving the slot props is a bit different when using a single default slot vs. using named slots. We are going to show how to receive props using a single default slot first, by using v-slot directly on the child component tag:

template<MyComponent v-slot=“slotProps”> {{ slotProps.text }} {{ slotProps.count }}</MyComponent>scoped slots diagram

Try it in the Playground

Try it in the Playground

The props passed to the slot by the child are available as the value of the corresponding v-slot directive, which can be accessed by expressions inside the slot.

You can think of a scoped slot as a function being passed into the child component. The child component then calls it, passing props as arguments:

jsMyComponent({ // passing the default slot, but as a function default: (slotProps) => { return ${slotProps.text} ${slotProps.count} }})function MyComponent(slots) { const greetingMessage = ‘hello’ return &lt;div&gt;${ // call the slot function with props! slots.default({ text: greetingMessage, count: 1 }) }&lt;/div&gt;}In fact, this is very close to how scoped slots are compiled, and how you would use scoped slots in manual render functions.

Notice how v-slot=“slotProps” matches the slot function signature. Just like with function arguments, we can use destructuring in v-slot:

template<MyComponent v-slot="{ text, count }"> {{ text }} {{ count }}</MyComponent>

Named Scoped Slots ​

Named scoped slots work similarly - slot props are accessible as the value of the v-slot directive: v-slot:name=“slotProps”. When using the shorthand, it looks like this:

template<MyComponent> <template #header=“headerProps”> {{ headerProps }} </template> <template #default=“defaultProps”> {{ defaultProps }} </template> <template #footer=“footerProps”> {{ footerProps }} </template></MyComponent>Passing props to a named slot:

template<slot name=“header” message=“hello”></slot>Note the name of a slot won’t be included in the props because it is reserved - so the resulting headerProps would be { message: ‘hello’ }.

If you are mixing named slots with the default scoped slot, you need to use an explicit <template> tag for the default slot. Attempting to place the v-slot directive directly on the component will result in a compilation error. This is to avoid any ambiguity about the scope of the props of the default slot. For example:

template<!– <MyComponent> template –><div> <slot :message=“hello”></slot> <slot name=“footer” /></div>template<!– This template won’t compile –><MyComponent v-slot="{ message }"> <p>{{ message }}</p> <template #footer> <!– message belongs to the default slot, and is not available here –> <p>{{ message }}</p> </template></MyComponent>Using an explicit <template> tag for the default slot helps to make it clear that the message prop is not available inside the other slot:

template<MyComponent> <!– Use explicit default slot –> <template #default="{ message }"> <p>{{ message }}</p> </template> <template #footer> <p>Here’s some contact info</p> </template></MyComponent>

Fancy List Example ​

You may be wondering what would be a good use case for scoped slots. Here’s an example: imagine a <FancyList> component that renders a list of items - it may encapsulate the logic for loading remote data, using the data to display a list, or even advanced features like pagination or infinite scrolling. However, we want it to be flexible with how each item looks and leave the styling of each item to the parent component consuming it. So the desired usage may look like this:

template<FancyList :api-url=“url” :per-page=“10”> <template #item="{ body, username, likes }"> <div class=“item”> <p>{{ body }}</p> <p>by {{ username }} | {{ likes }} likes</p> </div> </template></FancyList>Inside <FancyList>, we can render the same <slot> multiple times with different item data (notice we are using v-bind to pass an object as slot props):

template<ul> <li v-for=“item in items”> <slot name=“item” v-bind=“item”></slot> </li></ul>Try it in the Playground

Try it in the Playground

Renderless Components ​

The <FancyList> use case we discussed above encapsulates both reusable logic (data fetching, pagination etc.) and visual output, while delegating part of the visual output to the consumer component via scoped slots.

If we push this concept a bit further, we can come up with components that only encapsulate logic and do not render anything by themselves - visual output is fully delegated to the consumer component with scoped slots. We call this type of component a Renderless Component.

An example renderless component could be one that encapsulates the logic of tracking the current mouse position:

template<MouseTracker v-slot="{ x, y }"> Mouse is at: {{ x }}, {{ y }}</MouseTracker>Try it in the Playground

Try it in the Playground

While an interesting pattern, most of what can be achieved with Renderless Components can be achieved in a more efficient fashion with Composition API, without incurring the overhead of extra component nesting. Later, we will see how we can implement the same mouse tracking functionality as a Composable.

That said, scoped slots are still useful in cases where we need to both encapsulate logic and compose visual output, like in the <FancyList> example.

FAQ

巴西人爱赌吗?

波兰(30%)、葡萄牙(31%)、巴西(24%) 和印度(25%)也有很多人喜欢博彩。 体育博彩作为一个广泛的类别几乎受到所有市场的喜爱。 但是,

How does fortune tiger work?

Anyone who knows how online casino games work sees Fortune Tiger for what it is – a slot game that generates random results (RNG) and relies entirely on luck to win. There is, of course, no certain way to make money from the game.Jun 3, 2024

巴西有华人吗?

巴西華人或巴西華裔(葡萄牙語:Sino-brasileiro或Chinês-brasileiro)是出生在巴西或者移民到巴西的華人,總數估計

巴西线上博彩合法吗?

在很长一段时间内,只有线下的赌马和彩票在巴西是合法的(许可证制)。 根据巴西第3688/1941 号法案(“《轻罪法》”)的规定,“完全或主要依

Where to play fortune tiger?

Fortune Tiger on Mobile Walk on the wild side in the enchanting realm of Fortune Tiger Slots. You can power up and play through the 888casino App. It&rsquo;s available for download through the App Store and Google Play. This top slots game brings an Asian-themed adventure right to your smartphone or tablet.

This site only collects related articles. Viewing the original, please copy and open the following link:Slots Vue.js

🔥 😚 PG老虎机SLOTS 🎧
🎬 Latest Articles 🎈😉 Popular Articles 🎤
🥳 Recommended Articles 🎀
#Article TitleKeywordArticle LinkArticle Details
wpt global