vue
laozhong110
android app、c++、windows app
展开
-
vue3 keep-alive 引起Cannot read properties of null ( reading ‘nextSibling‘)
vue keep-alive nextSibling原创 2022-07-13 14:48:02 · 6368 阅读 · 1 评论 -
vue-cli 开发vue项目, 代理的配置
vue 代理配置原创 2022-02-23 15:12:46 · 1352 阅读 · 0 评论 -
vue开发调试时,如何分离出源代码(devtool配置)
vue不同版本/cli不同版本,在调试,源代码断点时,分离出源代码方便查看,配置大致一致,这里记录一下。//vue.config.js 文件module.exports = {/*一般在configureWebpack配置,不要在chainWebpack里头配置,这个配置好些与cli有关,可能无效*/ configureWebpack:{ devtool: "cheap-module-eval-source-map", output: { ...原创 2021-11-16 14:21:58 · 1968 阅读 · 1 评论 -
vue 除去#符号,并部署后浏览器刷新不出现404错误处理
export default new Router({ mode:"history", //把模式改成history ,就可以去除 # 符号 // base:'/', routes: [ { path: '/', name: 'HelloWorld', component: HelloWorld }, { path: '/firstpa...原创 2018-07-11 13:59:05 · 4725 阅读 · 1 评论