v-show
Show this element as long as the value is true.
<div id="app">
<button v-show="guest">Login</button>
</div>
<script>
new Vue({
el: 'app',
data: {
guest: true
}
})
</script>
copy