Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Vue CLI 项目中使用了 vue-select 组件。代码如下:
<v-select @keypress.native="getResult()" :options="category_array" v-model="selected" :clearable="false"></v-select>
现在的问题是,当我从下拉列表中选择任何值时,“选定”的数据会更新,而不是当我在组件中输入任何内容时。我需要从组件中获取键入的值。有什么办法可以得到吗?