vue路径上如何设置指定的前缀
vue路径上设置指定的前缀
有时在使用项目的时候,我们都需要指定一个前缀路径(就像tomcat中的虚拟路径),这个时候在vue中如何使用呢。
解决
这个时候我们可以使用vue-router中的base这个属性,使用这个属性就可以在路径前面添加指定的前缀。
export default new Router({ mode: 'history', //后端支持可开 # base: '/wtlicence', scrollBehavior: () => ({ y: 0 }), routes: constantRouterMap });
这个时候的访问路径是: http://127.0.0.1:8080/login.
当我们使用vue-router的base属性的时候。
export default new Router({ mode: 'history', //后端支持可开 base: '/wtlicence', scrollBehavior: () => ({ y: 0 }), routes: constantRouterMap });
这个时候的访问路径是: http://127.0.0.1:8080/wtlicence/login
vue history模式、前缀
路由history模式
router/index.js
mode: 'history', base: '/sss', // 路由前缀
路由前缀
config/index.js
开发dev和线上build配置中,将static改成想要的前缀。
assetsSubDirectory
: 打包后的静态资源要存放的路径(static)
最后,改成history模式后部署, 刷新会有问题。需要更改服务器配置(config)
server{ listen 8888; server_name localhost; root html location / { try_files $uri $uri/ @router; index index.html index.htm; } location @router { rewrite ^.*$ /index.html last; } }
新增的主要是:
location / { try_files $uri KaTeX parse error: Expected 'EOF', got '}' at position 51: …l index.htm; }̲ location @rou… /index.html last; }
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
vue3+vite使用vite-plugin-svg-icons插件显示本地svg图标的方法
这篇文章主要介绍了vue3+vite使用vite-plugin-svg-icons插件显示本地svg图标的方法,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2023-12-12Vue3 setup语法糖销毁一个或多个定时器(setTimeout/setInterval)
这篇文章主要给大家介绍了关于Vue3 setup语法糖销毁一个或多个定时器(setTimeout/setInterval)的相关资料,vue是单页面应用,路由切换后,定时器并不会自动关闭,需要手动清除,当页面被销毁时,清除定时器即可,需要的朋友可以参考下2023-10-10
最新评论