使用Vue时浏览器后台报错:Failed to load resource: the server responded with a status of 404 (Not Found)

在IDEA中创建maven工程使用vue修改html中的内容时,访问html页面发现并未修改成功,F12打开后台显示错误:Failed to load resource: the server responded with a status of 404 (Not Found) ,浏览器并未找到vue.js文件!
原因:
(1)maven工程引入vue.js文件后需要对工程进行打包,双击package按钮:
使用Vue时浏览器后台报错:Failed to load resource: the server responded with a status of 404 (Not Found)_第1张图片
(2)由于vue.js文件保存在了静态资源中,检查工程的配置文件springMVC.xml中是否开放了对静态资源的访问:
使用Vue时浏览器后台报错:Failed to load resource: the server responded with a status of 404 (Not Found)_第2张图片
完成上述步骤后,浏览器F12后台显示vue.js成功获取,页面内容也成功修改!
使用Vue时浏览器后台报错:Failed to load resource: the server responded with a status of 404 (Not Found)_第3张图片

你可能感兴趣的:(vue,前端,intellij-idea,maven,vue)