首页 > 编程 > JavaScript > 正文

详解element-ui中el-select的默认选择项问题

2019-11-19 11:05:11
字体:
来源:转载
供稿:网友

直接绑定将option中的value值绑定给v-model

<template> <div>  <el-select v-model="query">   <el-option v-for="item in options" :key="item.value" :value="item.value" :label="item.label"></el-option>  </el-select> </div></template><script>export default{ data() {  return {   options: [{    value: '01',    label: '我的'   }, {    value: '02',    label: '你的'   }, {    value: '03',    label: '他的'   }],   query: '02'  } }}</script><style></style>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表