vue a-select选择框默认值

打开页面选择框默认选择较好

vue a-select选择框默认值_第1张图片

html

              
                
                  
                
              

关键字段:

initialValue:

options.evaluationLevel[1].value,

记录:

initialValue(初始值)

evaluationLevel(字典值数组)

将字典值放在主页面的dictcode和options中。

如果html中未使用,则:defaultValue=""设置默认值,

如果html中使用,则用initialValue:设置默认值,注意上面关键字段的options前有this.的话,可能会报错,未定义options。

写按钮使用

initialValue:

(options.evaluationLevel && options.evaluationLevel.length) ? options.evaluationLevel[1].value : '',

你可能感兴趣的:(前端,html)