Skip to content

Commit b627c8c

Browse files
authored
Merge pull request #32 from lewandy/patch-1
Fix typo
2 parents c1dd86b + d76ab44 commit b627c8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ List of 300 VueJS Interview Questions
447447
**[⬆ Back to Top](#table-of-contents)**
448448
449449
5. ### What is the difference between v-show and v-if directives?
450-
Below are some of the main differences between between **v-show** and **v-if** directives,
450+
Below are some of the main differences between **v-show** and **v-if** directives,
451451
452452
1. v-if only renders the element to the DOM if the expression passes whereas v-show renders all elements to the DOM and then uses the CSS display property to show/hide elements based on expression.
453453
2. v-if supports v-else and v-else-if directives whereas v-show doesn't support else directives.
@@ -5008,4 +5008,4 @@ List of 300 VueJS Interview Questions
50085008
50095009
231. ### What is the best way to re-render a component?
50105010
The best way to force Vue to re-render a component is to set a `:key` on the component. i.e, Whenever the component to be re-rendered, just change the value of the key then Vue will re-render the component.
5011-
**[⬆ Back to Top](#table-of-contents)**
5011+
**[⬆ Back to Top](#table-of-contents)**

0 commit comments

Comments
 (0)