溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue2.0 下拉框默認標題設置方法

發(fā)布時間:2020-10-21 23:42:09 來源:腳本之家 閱讀:255 作者:vae的粉 欄目:web開發(fā)

昨天到今天,用vue2.0在寫一個性別選擇框,一給option添加seledted屬性就報錯這里

vue2.0 下拉框默認標題設置方法

vue2.0 下拉框默認標題設置方法

下面是報錯的代碼

ERROR in ./~/vue-loader/lib/template-compiler.js?id=data-v-c231dfa2!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/second.vue
template syntax error <select v-model="selected">:
inline selected attributes on <option> will be ignored when using v-model. Declare initial values in the component's data option instead.

selected 已經(jīng)綁定在<select></select> 上了 , 你選擇了哪個選項, selected 就是那個選項的value了 ,你想讓哪個選項為默認選中的話,就在data里的seleced 設置為那個選項的value

在單擊<select></select> 時,給'性別'這個選項添加一個disabled屬性就可以禁用了

<template>
 <select v-model='selected' @click="ss()">
 <option v-for="(option,index) in options" v-bind:value="option.value" :disabled="option.disabled">
 {{ option.text }}{{index}}{{option.disabled}}
 </option>
 </select>
 <span>Selected: {{ selected }}</span>
</template>
<script>
 export default{
 name: 'second',
 data(){
 return {
 selected: 'sex', // 比如想要默認選中為性別,那么就把他的value值設置為'sex'
 options: [
 {text: '性別', value: 'sex', disabled: ''}, //每個選項里面就不用在多一個selected 了
 {text: '男', value: '1'},
 {text: '女', value: '2'}
 ]
 }
 },
 methods: {
 ss: function () {
 this.options[0].disabled = disabled;
 },
 }
 }
</script>

以上這篇vue2.0 下拉框默認標題設置方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI