html
<template>
<div>
<h1>{{ title }}</h1>
<p v-if="showParagraph">This is a paragraph.</p>
<button @click="toggleParagraph">Toggle Paragraph</button>
</div>
</template>
<script>
export default{
data(){
return{
title: 'My Vue App',
showParagraph: true
}
},
methods:{
toggleParagraph(){
this.showParagraph = !this.showParagraph;
}
}
}
</script>