4.Vue 实现页面的切换动画

在router文件夹中的index.js中添加
Router.prototype.goBack = function () {
    this.isBack = true
    window.history.go(-1)
}
在app.vue中添加







在components文件夹的组件中使用






你可能感兴趣的:(4.Vue 实现页面的切换动画)