新建Vue项目webpack打包,部署到Linux服务器Tomcat上。
2,在Linux服务器下的Tomcat的webapps下创建VueTest文件夹,
3,配置router/index.js文件,增加base: '/VueTest',VueTest就是Tomcat中webapps下文件路径
4,在项目运行“cnpm run build”命令,生成dist文件夹,dist文件夹中包含static和index.html
5,将dist文件夹中static和index.html复制到Tomcat中webapps的VueTest文件夹中
6,重启Tomcat,访问Linux服务器ip:8080/VueTest,即可访问到Vue项目