背景: 需要一个可填可选的下拉框
当用户自定义输入时,自动添加“(其他)”后缀

<el-select 
            v-model="value"
            placeholder="请选择"
            clearable
            filterable
            @blur="selectBlur"
            @clear="selectClear"
            @change="selectChange"
            >
                  <el-option
                    v-for="(item,index) in options"
                    :key="index"
                    :label="item.label"
                    :value="item.value" />
</el-select>
data() {
      return {
              value: '',
              options: [
                  {
                  value: '无保留意见',
                  label: '无保留意见'
                }, {
                  value: '保留意见',
                  label: '保留意见'
                }
           ],
      }
}
methods: {
      selectBlur(e) {
        // 意见类型
        if (e.target.value !== '') {
          this.value = e.target.value + '(其他)';
          this.$forceUpdate()   // 强制更新
        }
      },
      selectClear() {
        this.value = ''
        this.$forceUpdate()
      },
      selectChange(val) {
        this.value = val
        this.$forceUpdate()
      },
 }


: 使用Vue开发时,在函数中改变了页面中的某个值,在函数中查看是修改成功了,但在页面中没有及时刷新改变后的值;
赋值完以后,执行下面这个方法 强制刷新数据

this.$forceUpdate()


版权声明:本文为CSDN博主「zlting~」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/sunshineTing2/article/details/108978675

Logo

前往低代码交流专区

更多推荐