el-option 是Element UI 框架中用于在 el-select 下拉选择框中定义选项的组件。el-option 默认选择指的是在页面加载时,el-select 组件中的某个 el-option 会被自动选中。 设置el-option默认选择的方法 方法一:数据绑定 通过数据绑定的方式,在组件初始化时设置 el-select 的v-model 属性为某个 el-option 的val...
},methods: {printSelect:function() {//打印选中到 类型 值和label值console.log(typeofthis.value1+'-'+this.value1+'-'+this.$refs.selectValue1.selected.label)console.log(typeofthis.value2+'-'+this.value2+'-'+this.$refs.selectValue2.selected.label) },getValue:function() {this.value1=...