Conditional Rendering

by Ardani Rohman

HTML

<script src="https://unpkg.com/[email protected]"></script>
<div id="app">
<p v-show="isShow">Conditional Rendering</p>
</div>

JavaScript

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