首先,我想对Vue感到陌生,这是我有史以来第一个使用Vue的项目。我有组合框,我想根据所选组合框做一些不同的事情。我使用单独的vue.html和TypeScript文件。这是我的代码。
<select name="LeaveType" @change="onChange()" class="form-control">
<option value="1">Annual Leave/ Off-Day</option>
<option value="2">On Demand Leave</option>
</select>
这是我的ts文件
onChange(value) {
console.log(value);
}
如何在我的TypeScript功能中获取选定的选项值?谢谢。
更改后的值将在
event.target.value