vue 2.0 드 롭 다운 상자 기본 제목 설정 방법
2032 단어 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 는에 연결 되 어 있 습 니 다.어떤 옵션 을 선 택 했 습 니까?selected 는 그 옵션 의 value 입 니 다.어떤 옵션 을 기본 으로 선택 하고 싶 으 면 data 의 selected 에서 그 옵션 의 value 로 설정 하 십시오.를 누 르 면'성별'이라는 옵션 에 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>
이상 의 vue 2.0 드 롭 다운 상자 의 기본 제목 설정 방법 은 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 께 참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Android 에서 Spinner 사용본 박문 은 기본 적 인 Spinner 의 사용 방법 을 소개 하 였 다. 우선 xml 의 코드 부분 을 적어 주세요. Strings. xml 의 파일 부분 을 다시 쓰 겠 습 니 다. 마지막 으로 activity ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.