See the Pen VUE3 기초 / v-model by ucong2222 (@ucong2222) on CodePen.
* 더 알아보기
v-model = @input + :value
생략 전 | 생략 후 |
const inputMaxDan = Vue.computed(() => { return Math.max(dan, inputDanMax); }); |
const inputMaxDan = Vue.computed(() => Math.max(dan, inputDanMax) ); |
- 하나밖에 없으므로 {}와 return 생략 가능
'VUE3 > 기초' 카테고리의 다른 글
[ VUE3 ] 기초다지기 13, 컴포넌트, props (0) | 2021.03.24 |
---|---|
[ VUE3 ] 기초다지기 12, 컴포넌트 정의 (0) | 2021.03.24 |
[ VUE3 ] 기초다지기 10, @input (0) | 2021.03.24 |
[ VUE3 ] 기초다지기 09, v-for (0) | 2021.03.24 |
[ VUE3 ] 기초다지기 08, v-show, v-if (0) | 2021.03.24 |