Vue
步行者之神
这个作者很懒,什么都没留下…
展开
-
Vant与Element-ui出现Property '$notify' must be of type 'ElNotification'错误
原因是两个组件库都在应用上添加了 $notify 方法;解决方法是: 只安装一个组件库, 另一个组件库按需引入报错示例:npm install vant element-ui# vant 和 element-ui 都有 $notify 方法, 会报错import Vue from 'vue';import Vant from 'vant';import 'vant/lib/i...原创 2020-03-19 17:02:46 · 1792 阅读 · 0 评论 -
ERROR Invalid options in vue.config.js: "baseUrl" is not allowed
vue项目我的这个版本是 3.10.0module.exports = { baseUrl: process.env.NODE_ENV === 'production' ? './' : '/'}这里面是一个坑在vue-cli.3.3版本后 baseUrl被废除了,因此这边要写成 publicPath。改成module.exports = { ...原创 2020-03-13 10:58:38 · 1784 阅读 · 0 评论 -
Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (72)
vue前端遇到node-sass报错:node-sass版本不兼容导致,试一下这2个方法:方法一:npm update --save node-sass方法二:npm install node-sass --save-dev原创 2020-03-11 16:37:28 · 3293 阅读 · 0 评论 -
vue+ts 报错TypeError: Cannot read property 'extend' of undefined
原来是忘记加@Component 导致一系列错误:找了半天,加上就好了:原创 2020-03-09 20:29:38 · 14664 阅读 · 0 评论 -
前后端传参
提交的时候,转义成String提交:params.content = JSON.stringify(this.tableData) [{"fieldName":"2","fieldDesc":"","fieldStyle":"","fieldOpera":""}] 后端传值后渲染:this.tableData = JSON.parse(data.cont...原创 2019-06-04 22:09:46 · 517 阅读 · 0 评论