lightlimx-website/plugins/vueAnimate.js

10 lines
684 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Vue from 'vue';
import VueAnimate from 'vue-animate-plugin';
Vue.use(VueAnimate, {
valueof: ':', // 表示v-animate指令修饰符中键与值使用什么字符分割默认使用':'
begin: 'begin', // 表示v-animate指令修饰符中动画开始之前的挂钩点的名称可以通过方式`.begin:onBegin`注入钩子函数它可以是async function
after: 'complete', // 表示v-animate指令修饰符中动画结束之后的挂钩点的名称`.complete:onComplete`方式注入钩子它可以是async function
callback: null // 表示v-animate指令中动画部分包括之后的衔接部分完全执行完毕后的钩子函数注入口
});