VUE之如何获取select的节点文本

匿名 (未验证) 提交于 2019-12-02 23:43:01
<template>   <a-select labelInValue :defaultValue="{ key: 'lucy' }" style="width: 120px" @change="handleChange">     <a-select-option value="jack">Jack (100)</a-select-option>     <a-select-option value="lucy">Lucy (101)</a-select-option>   </a-select> </template> <script> export default {   methods: {     handleChange(value) {       console.log(value); // { key: "lucy", label: "Lucy (101)" }     }   } } </script>  


参考网址:https://vue.ant.design/components/select-cn/#components-select-demo-automatic-tokenization

文章来源: https://blog.csdn.net/ljljlj1993/article/details/92641426
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!