链街Dcat后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
319 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. <div id="option">
  2. <el-select v-model="value" filterable placeholder="选择市场">
  3. <el-option
  4. v-for="item in options"
  5. :change="doSomething()"
  6. :key="item.value"
  7. :label="item.label"
  8. :value="item.value">
  9. </el-option>
  10. </el-select>
  11. </div>