问题
在el-table中 el-input使用v-model双向绑定失效,输入框无法输入
解决
在template 中添加 slot-scope="xxx" 其中xxx可随意填写
原因解析
无
遇到这种问题啥 this.$forceUpdate() 这种强制更新都一律无效
原因是啥俺也不知道,所以此bug花了我2个小时的时间
在濒临绝望的时候发现这种奇怪的解决办法
<template slot="header" slot-scope="color">
<div class="flex">
<el-input
class="mr10"
clearable
v-model="input"
size="mini"
placeholder="输入城市名称"></el-input>
<el-button size="mini" type="primary" @click="search">搜索</el-button>
</div>
</template>