feat: add the configuration of disable animation; 🌟

新增:禁用页面切换动画的功能;
This commit is contained in:
iczer
2020-07-10 11:56:36 +08:00
parent d78f6d61d7
commit 9d5c100960
8 changed files with 21 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
// 自定义配置,参考 ./default/setting.js需要自定义的属性在这里配置即可
// 自定义配置,参考 ./default/setting.config.js需要自定义的属性在这里配置即可
module.exports = {
theme: {
color: '#13c2c2',

View File

@@ -14,6 +14,7 @@ module.exports = {
systemName: 'Vue Antd Admin', //系统名称
copyright: '2018 ICZER 工作室出品', //copyright
animate: { //动画设置
disabled: false, //禁用动画true:禁用false:启用
name: 'bounce', //动画效果,支持的动画效果可参考 ./animate.config.js
direction: 'left' //动画方向,切换页面时动画的方向,参考 ./animate.config.js
},