pageAinimate
pageAinimate copied to clipboard
vue实现webapp页面切换动画
这个动画效果使用transform后,里面的子页面使用fixed布局就会失效,这个有解决办法吗
``` `` 页面切换好像反掉了 ```
export default new Router({ routes: [ { path: '/', redirect: '/index' }, { path: '/index', component: index, children: [ { path: '', name: 'home', component: home }, { path: 'page1',...
监听浏览器返回点击事件吗