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

Detailed explanation of the use of v-cloak in Vue

php中世界最好的语言
Release: 2018-04-19 13:43:16
Original
4160 people have browsed it

This time I will bring you a detailed explanation of the use of v-cloak in Vue. What are the precautions for using v-cloak in Vue. Here are practical cases, let’s take a look.

The role and usage of v-cloak

Usage:

This directive remains on the element until the associated instance ends compilation. When used with css rules such as [v-cloak] { display: none }, this directive can hide uncompiled Mustache tags until the instance is ready. Official API{{msg}}

setTimeout(() => {
  newVue({
    el:'#app',
    data: {
      msg:'hello'
    }
  })
},2000)
Copy after login

v-cloak can solve this problem. Add HTML to the css to bind the Vue instance. When the page is loaded, it will flash and then appear. Loading completed words, in order to make the effect more obvious, we can delay loading the Vue instance

[v-cloak] {
 display: none;
}
Copy after login

The difference between Vue1.x and v-cloak in Vue2Add v- to the loading point in html cloak can solve this problem

In Vue1, Vue instances are allowed to be mounted on the body, but Vue2 is not allowed. If you want to instantiate the entire page, you need to use another p to accommodate the entire page. Content, instantiate it

In this way, when using v-cloak, you also need to use this method

Why is the v-cloak I use invalid?

In actual projects, we often load css files through @import

@import"style.css"
@import"index.css"
Copy after login

In order to avoid this situation, we can write [v-cloak] in the css introduced by link , or write an inline css style, this will solve the problem. @import will not be loaded until the page DOM is fully loaded. If we write [v-cloak] in the css file loaded by @import, the page will still flicker.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Summary of methods to improve Node.js performance

JS implementation of drop-down menu login registration pop-up window

The above is the detailed content of Detailed explanation of the use of v-cloak 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!