不管在使用el-table里面加入input框或者直接渲染input框。当input框很多的时候,会导致页面的CPU增高,从而导致页面卡顿和输入卡顿。

这是由于页面中input框绑定的v-model过多导致 数据双向绑定更新后页面重新渲染次数多、页面数据重新加载次数多。

这里推荐使用把input框封装成子组件处理。不推荐使用防抖节流。因为input框不止输入框,还有选择框、级联选择,还有一些复杂的运算。

组件之间得更新是互不打扰的。

下面是我用VUE3进行代码演示。提供思路。父组件传值给子组件。子组件更新数据后传值给父组件。

子组件

input.vue

<template>
    <el-input v-model="val" :maxlength="props.maxlength" size="small" placeholder="请输入" @change="onChange"></el-input>
</template>
<script setup>

const props = defineProps({
    value:{
        type:String,
        default:''
    },
    maxlength: {
        type: Number,
        default: null
    }
})
const emit =  defineEmits(['change']);

const val = ref('');

watch(
    ()=>props.value,
    (newVal)=>{
        val.value = props.value;
    },
    {
        deep:true,
        immediate:true
    }
)

const onChange = () => {
    emit('change',val.value)
}
onMounted(()=>{
    val.value = props.value;
})
</script>

<style scoped lang="scss">

</style>
父组件
<template>
    <weInput :value="input1" :maxlength="30" @change="onWeChange"></weInput>
</template>
<script setup>
const input1 = ref('');
const weInput = defineAsyncComponent(() => import('/input.vue'));

const onWeChange = (val) => {
    input1.value = val;  
}
</script>

 下面是成功展示

Logo

前往低代码交流专区

更多推荐