赞
踩
<template> <el-select v-model="value" filterable placeholder="请选择" ref='select' @visible-change='change'> <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </el-option> </el-select> </template> <script> export default { data() { return { options: [{ value: '选项1', label: '黄金糕' }, { value: '选项2', label: '双皮奶' }, { value: '选项3', label: '蚵仔煎' }, { value: '选项4', label: '龙须面' }, { value: '选项5', label: '北京烤鸭' }], value: '' } }, methods:{ change(item){ if(item){ this.$refs.select.focus() }else{ this.$refs.select.blur() } } } } </script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。