npm install vue-router-page-turning -S
<template>
<div id="app">
<vue-router-page-turning>
<!-- 动画如果出现卡顿建议使用 keep-alive -->
<keep-alive>
<router-view />
</keep-alive>
</vue-router-page-turning>
</div>
</template>
<script>
import VueRouterPageTurning from 'vue-router-page-turning';
export default {
name: "app",
components: {
VueRouterPageTurning
}
};
</script>
<style>
</style>
Attribute | type | default | explain |
---|---|---|---|
transitionTime | number | 500 | 过渡时间 |
transitionRange | string | 100% | 过渡幅度 |
exclude | Array | [] | 不需要动画的路由 |