0
3

More than 1 year has passed since last update.

Vue.jsのローディング中に、テンプレートを見せたくない!

Last updated at Posted at 2021-09-30

Vue.jsのローディング中、{{text}}⇦まま表示されてしまう問題を解決します!

結論: v-cloakにstyleを設定する
htmlのcssをゴニョゴニョすればいい感じでできます!

やり方👇

main.js
const App = {
  data() {
    return {
      text: "aaaa"
    }
  }
}
index.html
-<div id="app">
-    <p>{{text}}</p>
-</div>
+<div id="app" v-cloak>
+    <p>{{text}}</p>
+</div>
styles.css
+[v-cloak] {
+  display: none;
+}
0
3
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
0
3