摘要: Vue.use做了什么 我们在使用vue+element-ui做前端开发时经常会在工程的main.js里面写上如下几句代码(注:多余的代码已忽略) import Vue from 'vue' import Element from 'element-ui' ... Vue.use(Element, 阅读全文
posted @ 2021-03-11 13:53 xuxianshun 阅读(1099) 评论(0) 推荐(0)
摘要: mixin mixin就是混入的意思,特别适合全局共享变量 同时在混入时Vue会自动合并名称相同的变量,但是会以当前页面定义的变量优先 var mixin = { data: function () { return { message: 'hello', foo: 'abc' } } } new 阅读全文
posted @ 2021-03-11 13:37 xuxianshun 阅读(86) 评论(0) 推荐(0)