博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue中路由返回上一个页面,恢复到上一个页面的滚动位置
阅读量:6419 次
发布时间:2019-06-23

本文共 1919 字,大约阅读时间需要 6 分钟。

第一步:路由文件的配置(对你所需要的vue文件进行保存缓存标志的添加)

import Vue from 'vue'import Router from 'vue-router'import HelloWorld from '@/components/HelloWorld'import Message from '@/components/Message'import Search from '@/components/Search'import Home from '@/components/bottomBar/Home'import Person from '@/components/bottomBar/Person'import Release from '@/components/bottomBar/Release'import Collection from '@/components/bottomBar/Collection'Vue.use(Router);const  routes =[  {    path: '/',    name: 'HelloWorld',    component: HelloWorld,    children: [      {        path:'home',        component:Home,        meta: {          title: 'home',          keepAlive: true        }      },      {        path:'person',        component:Person      },      {        path:'release',        component:Release      },      {        path:'collection',        component:Collection      }      ]  },  {    path:"/message",    component:Message  },  {    path:"/search",    component:Search  }  ];const router = new Router({  routes,});export default router

第二步:router-view的设置

第三步:在你需要保存位置的vue文件里面进行操作

 

转载于:https://www.cnblogs.com/jsydb/p/10136101.html

你可能感兴趣的文章
JavaMail邮箱验证用户注册
查看>>
系统时间——ntpd
查看>>
反射实现AOP动态代理模式(Spring AOP实现原理)
查看>>
Http协议与缓存
查看>>
监测超过特定内存阀值进程并结束
查看>>
Linux Centos 查询信息
查看>>
android adb命令
查看>>
python “双”稀疏矩阵转换为最小联通量“单”矩阵
查看>>
揭秘天猫双11背后:20万商家600万张海报,背后只有一个鹿班
查看>>
重置mysq root密码脚本
查看>>
我的友情链接
查看>>
MHA配置参数
查看>>
深入理解Lock
查看>>
vim的块选择
查看>>
HTML --块
查看>>
在DLL中获取主进程窗口句柄
查看>>
基于消息队列的双向通信
查看>>
一个不错的loading效果
查看>>
Debian允许root用户登录
查看>>
linux的文件系统
查看>>