computed
-
데이터 바인딩 및 ComputedVUE.JS 2020. 5. 3. 23:37
컴퓨티드(computed) 속성은 템플릿의 데이터 표현을 더 직관적이고 간결하게 도와주고, 간단한 데이터 조작이 가능합니다. 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 Document {{ num }} {{ doubleNum }} loading already Login {{message}} new Vue({ el : '#app', data() { return { num : 10, uuid: 'abc1234', name: 'text-blue', loading: true, mess..