1. Vuejs Dynamic Slots App
  2. Vuejs Dynamic Slots Game
  3. Vuejs Dynamic Slots Definition

Let’s now learn how to dynamically bind and change classes in HTML elements using VueJS. Problem: You want to dynamically change the class name of an HTML element depending on VueJS data property. Solution: There are two ways you can achieve this, let’s review both of them. #1 Using Object Syntax Let’s work with a simple HTML element that changes its color depending upon the data. Beautiful slot syntax. Since Vue 2.6, there is a shorthand for slot names, just like there is for events e.g @click instead of v-on:click`. If you have a component which has a slot called row, which has a slot-prop called item, you can now pass a piece of template to it and access the item prop this way.

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

Vuejs Dynamic Slots

keep-alive with Dynamic Components

Earlier, we used the is attribute to switch between components in a tabbed interface:

When switching between these components though, you’ll sometimes want to maintain their state or avoid re-rendering for performance reasons. For example, when expanding our tabbed interface a little:

You’ll notice that if you select a post, switch to the Archive tab, then switch back to Posts, it’s no longer showing the post you selected. That’s because each time you switch to a new tab, Vue creates a new instance of the currentTabComponent.

Slots

Recreating dynamic components is normally useful behavior, but in this case, we’d really like those tab component instances to be cached once they’re created for the first time. To solve this problem, we can wrap our dynamic component with a <keep-alive> element:

Vuejs dynamic slots games

Check out the result below:

Now the Posts tab maintains its state (the selected post) even when it’s not rendered. See this fiddle for the complete code.

Note that <keep-alive> requires the components being switched between to all have names, either using the name option on a component, or through local/global registration.

Check out more details on <keep-alive> in the API reference.

Async Components

In large applications, we may need to divide the app into smaller chunks and only load a component from the server when it’s needed. To make that easier, Vue allows you to define your component as a factory function that asynchronously resolves your component definition. Vue will only trigger the factory function when the component needs to be rendered and will cache the result for future re-renders. For example:

As you can see, the factory function receives a resolve callback, which should be called when you have retrieved your component definition from the server. You can also call reject(reason) to indicate the load has failed. The setTimeout here is for demonstration; how to retrieve the component is up to you. One recommended approach is to use async components together with Webpack’s code-splitting feature:

Vuejs Dynamic Slots App

You can also return a Promise in the factory function, so with Webpack 2 and ES2015 syntax you can do:

When using local registration, you can also directly provide a function that returns a Promise:

If you’re a Browserify user that would like to use async components, its creator has unfortunately made it clear that async loading “is not something that Browserify will ever support.” Officially, at least. The Browserify community has found some workarounds, which may be helpful for existing and complex applications. For all other scenarios, we recommend using Webpack for built-in, first-class async support.

Vuejs Dynamic Slots Game

Handling Loading State

New in 2.3.0+

Vuejs Dynamic Slots Definition

The async component factory can also return an object of the following format:

Note that you must use Vue Router 2.4.0+ if you wish to use the above syntax for route components.

← SlotsHandling Edge Cases →
Vuejs Dynamic Slots
Phát hiện lỗi hoặc muốn đóng góp vào nội dung? Chỉnh sửa trang này trên GitHub!