1. 程式人生 > >vue2+animate.css

vue2+animate.css

nim port import leave 下載 使用 show right click

下載animate.css並引入項目,

import ‘./css/animate.css‘
使用:
<template>
  <div class="box">
    <transition enter-active-class="animated fadeInLeft" leave-active-class="animated fadeOutRight">
      <button @click="decrease" v-show="home.count>0" class="decrease">我是減法</button>
    </transition>
    <div class="num" > {{home.count}} </div>
    <button @click="add" >我是加法</button><br><br>
  </div>
</template>

vue2+animate.css