关于el-cascader不回显问题

就是做的一个 级联选择器,再修改form表单的时候不回显,直接上前端代码了

<el-cascader v-model="form.id" :options="idOptions" :props="idProps"
                        placeholder="请选择" filterable clearable></el-cascader>

      idOptions:[],
      idProps: {
        lazy: true,
        lazyLoad(node, resolve) {
          if(node.level == 0){
            node.value = 0
          }

          smcListChild(node.value).then(res => {
            const res = res.data.map((value, i) => ({
              value: value.categoryId,
              label: value.categoryName,
              leaf:  value.id == false
            }));

            resolve(res);
          })
            .catch(err => {
              console.log(err);
            });
        }
      },

找了很久百度都还是看不明白要怎么处理这个问题,有个大家说比较简单的,看了下,看不太明白什么意思
https://blog.csdn.net/qq_42341025/article/details/110678127