<!DOCTYPE html>
<html>
<head>
<title>TodoList</title>
<script src="./vue.js"></script>
<link rel="stylesheet" type="text/css" href="./animate.css">
</head>
<body>
<div id='app'>
<transition name="fade" enter-active-class="animated swing" leave-active-class="animated zoomOutRight" appear appear-active-class='animated swing'>
<div v-if="show" >HELLO</div>
</transition>
<button @click='handleClick'>change</button>
</div>
<script>
var vm=new Vue({
el:'#app',
data:{
show:true
},
methods:{
handleClick(){
this.show=!this.show;
}
}
})
</script>
</body>
</html>