摘要:
场景: 在router/index.ts中想要获取store import { useStore } from '@/vuex'; const store = useStore() console.log('app store',store) //undefined 在App.vue,或者pages 阅读全文
摘要:
报错 查看版本node-sass当前版本比低, "node-sass": "^4.14.1", "sass-loader": "^7.1.0", 所以用sudo n切换node版本到12.16.3 ,再安装就可以了. 阅读全文
摘要:
项目启动报错 解决方案: package-lock.json下所有关于raphael版本限制的都在前面加“^”,手动修改为 阅读全文
摘要:
报错 cd 项目目录 git config --global url."https://".insteadOf git:// 阅读全文
摘要:
package-lock.json "@types/node": { "version": "12.12.7", "resolved": "https://registry.npm.taobao.org/@types/node/download/@types/node-12.12.7.tgz?cac 阅读全文
摘要:
vuex/indet.ts 文档:https://vuex.vuejs.org/zh/guide/typescript-support.html#%E7%AE%80%E5%8C%96-usestore-%E7%94%A8%E6%B3%95 阅读全文
摘要:
确保已安装node版本管理模块n的情况下,没安装的可以执行下面的命令 sudo npm install n -g 需求安装 1、安装稳定版 sudo n stable 2、安装最新版 sudo n latest 1、列出所有已安装的 node 版本 n ls 2、切换node版本,上下键切换,回车确 阅读全文
摘要:
axios/interceptor.js import axios from 'axios' import { ElMessage } from 'element-plus' import store from '@/vuex' console.log(store)//undefined axios 阅读全文
摘要:
原因:内部判断,导致路由产生了死循环 错误代码: router.beforeEach((to, from, next) => { if (store.getters.token) { if (to.path '/login') { next('/') } else { next() } } else 阅读全文
摘要:
官方文档: https://cn.vitejs.dev/guide/features.html#glob-import 导入模块: import.meta.glob 为过动态导入,构建时,会分离为独立的 chunk const files = import.meta.glob('./modules/ 阅读全文