1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Vue.jsでjsファイル読み込み時に一瞬テンプレートのマスタッシュファイルが見えてしまう場合の対処法

Posted at

html

  1. <head>タグ配下に<style>タグを追加し、 [v-cloak] { opacity: 0; }を定義する。
  2. コンポーネントを指定しているタグにv-cloakを付与する。
</head> 
    <meta charset="utf-8">
    <title>サンプル</title>
    <link rel="..." href="...">
    <style> 
        [v-cloak] { opacity: 0; } 
    </style> 
</head>
<body>
    <div id="test" v-cloak>
    ・・・省略・・・
    </div>
<body>

main.js

// コンポーネント
var app = new Vue({
    el : '#test' ,
    data : {}
  ・・・以下省力

解説

v-clockは要素が属するコンポーネントのデータ生成とデータバインディングが完了するとDOMから消去される。その性質を利用し、v-clockがついている間だけ、CSSで要素を非表示にすることでバインディング前の状態を隠すことができる。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?