摘要: 项目是使用公司自己的脚手架搭建的,其中引入了基于element-ui修改的ui框架。在ie中白屏显示,并且报错。 SCRIPT1028: SCRIPT1028: Expected identifier, string or number 查看公司文档后发现需要在vue.config.js中添加tra 阅读全文
posted @ 2020-11-09 11:31 威斯布鲁童 阅读(3249) 评论(0) 推荐(0) 编辑
摘要: // 在vuex文件中引入router,router的原型中有一个currentRoute属性,里面有当且页面路由的信息 import router from '../router' console.log(router.currentRoute.params) 阅读全文
posted @ 2020-10-16 17:30 威斯布鲁童 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 在终端输入sudo nautilus 阅读全文
posted @ 2020-10-15 22:28 威斯布鲁童 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 使用node连接mongodb时报错,原因是连接mongodb时没有进行权限验证,需要输入用户名密码 const DB_URL = 'mongodb://root:example@192.168.0.128/admin' 阅读全文
posted @ 2020-10-15 22:27 威斯布鲁童 阅读(5876) 评论(0) 推荐(0) 编辑
摘要: 最简单的方法就是location.reload(),但是用户体验不好 除此之外还有一种方法比较好 const createRouter = () => new VueRouter({ linkActiveClass: 'active', mode: 'hash', base: './', route 阅读全文
posted @ 2020-09-21 22:27 威斯布鲁童 阅读(1136) 评论(0) 推荐(0) 编辑
摘要: 加一个条件判断,防止每次beforeEach都添加路由 阅读全文
posted @ 2020-09-07 22:41 威斯布鲁童 阅读(916) 评论(0) 推荐(0) 编辑
摘要: vue-cli3配置路径别名 阅读全文
posted @ 2019-12-10 11:36 威斯布鲁童 阅读(2080) 评论(0) 推荐(0) 编辑
摘要: node中的require加载规则 阅读全文
posted @ 2019-11-28 18:04 威斯布鲁童 阅读(665) 评论(0) 推荐(0) 编辑
摘要: 使用范围 操作|ES6|CommonJS |: |: 导出|export default,export|module.exports = {},exports 导入|import … form … |require() CommonJS又是啥呢? 历史上,JavaScript 一直没有模块(modu 阅读全文
posted @ 2019-11-25 15:12 威斯布鲁童 阅读(396) 评论(0) 推荐(0) 编辑
摘要: nodejs设置跨域访问 阅读全文
posted @ 2019-11-22 18:07 威斯布鲁童 阅读(2566) 评论(0) 推荐(0) 编辑