摘要:
<el-select> <el-option v-for="(item, index) in optionlist" @click.native ="handleSelect(index)"></el-option> </el-select> 阅读全文
摘要:
全局定义,方便调用 新建plugins.js export default { install (Vue) { // 防重复点击(指令实现) Vue.directive('preventReClick', { inserted (el, binding) { el.addEventListener( 阅读全文
摘要:
问题原因:ES6 编译器识别问题 如果在public.js这样写会有警告export 'default' (imported as 'xxx') was not found export const myMixin= {} 解决办法:修改组件中引用js的地方 将 import Public from 阅读全文