Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 이미지 좌표 추출
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- can't getting credentials
- 설치완료안됨
- 어셈블리어
- aws ec2
- CSS
- 김골라
- Error:error:0308010C:digital envelope routines::unsupported
- GeoJSON object too complex/large
- EC2
- node
- expo
- AWS CodeBuild
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- 반응형 페이지 좌표 변환
- ogr2ogr
- AWS CodePipeline
- 이미지 맵
- S3
- AWS
- Unable to find the global bin directory
- react
- NODE_VERSION
- rwdImageMaps
- C언어
- SASS
- credential error
- nodejs
- netlify variables
Archives
- Today
- Total
ImFe's study
[Vue] VueCompilerError: Unnecessary value binding used alongside v-model. It will interfere with v-model's behavior 오류 본문
WEB
[Vue] VueCompilerError: Unnecessary value binding used alongside v-model. It will interfere with v-model's behavior 오류
ImFe 2022. 12. 16. 19:18
<div class="mt-3">
변경할 노출 날짜를 선택하세요
<div>
<input type="date" v-model="eventStartDate" :value="eventStartDate"> ~ <input type="date" :value="eventEndDate">
</div>
</div>
날짜 수정 기능이 작동은 하는데 자꾸 서버에서 받아온 원래 값으로 수정됐다.
value로 줬던게 문제여서 v-mode로 바꿔줬는데 두 속성은 충돌한다고 한다.
이유는 v-model이 :value(html value 속성)과 똑같이 기본값을 바인딩해주는 동작을 하기 때문.
위와 같은 목적이라면 v-model만을 사용하는것이 맞다.
<div class="mt-3">
변경할 노출 날짜를 선택하세요
<div>
<input type="date" v-model="eventStartDate"> ~ <input type="date" v-model="eventEndDate">
</div>
</div>
+)
체크박스와 라디오 버튼에 대해서는 두 속성을 사용할 수 있다고 한다. (다른 값 사용)
또한 이러한 상황에서는 v-model의 경우 selected 속성과 같이 동작된다고 한다.
'WEB' 카테고리의 다른 글
[WEB] rwdImageMaps를 이용한 이미지맵 좌표 반응형 변환 (0) | 2023.02.03 |
---|---|
[WEB] html input type=number 사용 시 카운터 없애기 (0) | 2023.01.12 |
[WEB] 배포시 CSS opacity가 1%로 고정되는 버그 해결 (0) | 2022.12.14 |
[WEB] Browser sync 사용법 (0) | 2022.03.02 |
[WEB] <iframe> 태그를 화면에 보이지 않게 하는법 (2) | 2022.02.22 |
Comments