LoginSignup
0
1

More than 3 years have passed since last update.

Vue.jsのv-if,v-show 要素の表示非表示

Last updated at Posted at 2019-10-10

要素の表示非表示を切り替える

js

var app = new Vue({
  el: '#app',
  data: {
    toggle: true
  }
})

html

<div id='app'>
  <p v-if=toggle>
  Hello
  </p>
</div>

<script src="https://cdn.jsdelivr.net/npm/vue@2.5.16"></script>

表示結果

image.png

jsのtoggleをfalseにすると非表示になる。

var app = new Vue({
  el: '#app',
  data: {
    toggle: false
  }
})

v-showでfalseの場合はcssでdisplay:noneとなる。
v-ifの場合はdomレベルで削除となる。

0
1
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
1