前端
遗失的陈雪锋
这个作者很懒,什么都没留下…
展开
-
Vue 安装 prerender-spa-plugin 预渲染 axios 无法请求数据
我打算使用prerender-spa-plugin进行预渲染,但是每次build编译打开chromium,都是无法请求数据,导致爬虫爬不到,渲染的页面就不对了,我看了下network,也没看到发出过请求,而且我打印了一下axios的响应返回,发现返回了一个html文件??network没有看到发出请求axios没有返回接口数据,而是返回了当前编译的html文件??有大佬碰到过这种情况吗?...原创 2020-07-02 09:02:42 · 816 阅读 · 4 评论 -
Vue router 使用 History 模式导致页面请求 404
vue-router 默认 hash 模式 —— 使用 URL 的 hash 来模拟一个完整的 URL,于是当 URL 改变时,页面不会重新加载。如果不想要很丑的 hash,我们可以用路由的 history 模式,这种模式充分利用 history.pushState API 来完成 URL 跳转而无须重新加载页面。const router = new VueRouter({ mode: 'history', routes: [...]})当你使用 h转载 2020-07-01 21:55:53 · 878 阅读 · 0 评论 -
vue踩坑-This dependency was not found
vue踩坑-This dependency was not found- vue无法引入局部css- Vue @import Module not found- vue无法引入局部css- Vue @import Module not found今天用Vue-cli局部引入一个css,但是一直提示Module not found 或者 This dependency was not found 以为是自己依赖未安装好,装好了Loader也没用,才发现Vue的路径不是从入口文件开始算的,而是从当前组件位置原创 2020-05-20 00:27:10 · 2065 阅读 · 1 评论