vue
田宝银
这个作者很懒,什么都没留下…
展开
-
npm 设置阿里镜像
npm config set registry https://registry.npm.taobao.org原创 2021-01-25 16:34:12 · 4839 阅读 · 1 评论 -
elementUI 上传时携带token
<el-upload action="action" :headers="headers" > <el-button size="small" type="primary" >选择文件</el-button> </el-upload>在data中添加对象headers,其中getToken()在cookie中获取token的方法 headers:{ Authorization:'Bear...原创 2021-01-11 11:52:34 · 670 阅读 · 1 评论 -
Vue 子组件调用父组件方法
第一种:通过props#父组件引用<child :functiona="parentfunction"/>#子组件props:{ functiona:{ type:Function, default:()=>{} }}methods:{ myfun(){ this.functiona() //调用父组件的parentfunction } }第二种:通过$emit#父组件引用<child...原创 2020-11-05 22:26:18 · 127 阅读 · 0 评论