Vue
by brigand
HTML
<div id="app">
<button type="button" @click="toggle">Toggle</button>
<my-thing v-if="show"></my-thing>
</div>
CSS
#app {
background: #fff;
border-radius: 4px;
padding: 20px;
transition: all 0.2s;
}
button {
margin-bottom: 2em;
}
Vue
Vue.component('my-thing', {
template: '<div>This is my-thing</div>'
});
new Vue({
el: "#app",
data: {
show: true
},
methods: {
toggle: function(){
this.show = !this.show;
}
}
})