摘要: 1 module.exports = { 2 root: true, 3 parser: 'babel-eslint', 4 parserOptions: { 5 sourceType: 'module', 6 allowImportExportEverywhere: true //ignore e 阅读全文
posted @ 2020-03-23 10:23 dropInInt 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1 { 2 // vscode默认启用了根据文件类型自动设置tabsize的选项 3 "editor.detectIndentation": false, 4 // 重新设定tabsize 5 "editor.tabSize": 2, 6 // #每次保存的时候自动格式化 7 "editor.for 阅读全文
posted @ 2020-03-23 10:22 dropInInt 阅读(2260) 评论(0) 推荐(1) 编辑
摘要: 原因:在路由中添加了相同的路由。解决:重写路由的push方法 在src/router/index.js 里面import Router from 'vue-router'下面写入下面方法即可 /** * 重写路由的push方法 */ const routerPush = Router.prototy 阅读全文
posted @ 2020-03-23 10:19 dropInInt 阅读(237) 评论(0) 推荐(0) 编辑