vue2+animate.css

vue

下载animate.css" title="animate.css">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 的全部内容, 来源链接: utcz.com/z/378113.html

回到顶部