You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/v2/guide/conditional.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -173,7 +173,7 @@ new Vue({
173
173
174
174
차이점은 `v-show`가 있는 엘리먼트는 항상 렌더링 되고 DOM에 남아있다는 점입니다. `v-show`는 단순히 엘리먼트에 `display` CSS 속성을 토글합니다.
175
175
176
-
<pclass="tip">`v-show`는 `<template>` 구문을 지원하지 않으며 `v-else`와도 작동하지 않습니다.</p>
176
+
<pclass="tip"><code>v-show</code>는 <code><template></code> 구문을 지원하지 않으며 <code>v-else</code>와도 작동하지 않습니다.</p>
177
177
178
178
## `v-if` vs `v-show`
179
179
@@ -187,6 +187,6 @@ new Vue({
187
187
188
188
## `v-if` 와 `v-for`
189
189
190
-
<pclass="tip">`v-if`와 `v-for`을 함께 사용하는 것을 권장하지 않습니다. 자세한 내용은[style guide](/v2/style-guide/#Avoid-v-if-with-v-for-essential)을 확인하십시오.</p>
190
+
<pclass="tip"><code>v-if</code>와 <code>v-for</code>을 함께 사용하는 것을 권장하지 않습니다. 자세한 내용은 <ahref="/v2/style-guide/#Avoid-v-if-with-v-for-essential">style guide</a>을 확인하십시오.</p>
191
191
192
192
`v-if`와 함께 사용하는 경우, `v-for`는 `v-if`보다 높은 우선순위를 갖습니다. 자세한 내용은 <ahref="../guide/list.html#v-for-with-v-if">리스트 렌더링 가이드</a>를 확인하십시오.
0 commit comments