欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

vue獲取selected

在Vue中,獲取選中的值可以使用v-model指令,但有時(shí)候我們需要根據(jù)用戶的選擇來進(jìn)行一些操作,這時(shí)候就需要用到獲取selected的方法。

獲取selected方法的實(shí)現(xiàn)比較簡(jiǎn)單,我們可以使用以下代碼:

<template>
<select v-model="selected">
<option v-for="option in options" :value="option.value">
{{ option.text }}
</option>
</select>
</template>
<script>
export default {
data() {
return {
selected: '',
options: [
{ text: '選項(xiàng)1', value: '1' },
{ text: '選項(xiàng)2', value: '2' },
{ text: '選項(xiàng)3', value: '3' }
]
};
},
methods: {
doSomething() {
console.log(this.selected);
// 進(jìn)行其他操作
}
}
};
</script>

在上述代碼中,我們首先定義了一個(gè)