vue
断毫残墨
这个作者很懒,什么都没留下…
展开
-
vue在windows下可以编译,在linux编译出现This dependency was not found的原因
This dependency was not found: * ../components/user/UserList in ./src/router/index.js To install it, you can run: npm install --save ../components/user/UserList 自己写的组件在liunx编译时找不到原因,可能是因为大小写问题,在windows上不区分大小写,但在linux是区分大小写的 ...原创 2020-08-20 18:19:00 · 665 阅读 · 0 评论 -
vue cli3.0修改网页标题
1. 在路由meta属性中设置标题title属性 { path: '/user', name: 'User', meta: { title: '用户管理' }, component: User } 2 .在main.js中添加 router.beforeEach((to, from, next) => { // 路由发生变化修改页面title if (to.meta.title) { document.title =原创 2020-07-27 21:46:58 · 1977 阅读 · 1 评论 -
vue cli3.0 使用 es2020 中的可选链运算符
1. 安装依赖 npm install@babel/plugin-proposal-optional-chaining --save 2.在babel.config.js中 的 plugins中添加@babel/plugin-proposal-optional-chaining module.exports = { presets: [ '@vue/cli-plugin-babel/preset' ], plugins: [ '@babel/plugin-pro...原创 2020-07-27 21:40:24 · 3100 阅读 · 0 评论