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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3070,7 +3070,7 @@ List of 300 VueJS Interview Questions
3070
3070
3071
3071
**[⬆ Back to Top](#table-of-contents)**
3072
3072
3073
-
133. ### Is Vuex supports hot reloading?
3073
+
133. ### Does Vuex support hot reloading?
3074
3074
Yes, vuex supports hot-reloading for mutations, modules, actions and getters during development. You need to use either webpack's hot module replacement API or browserify's hot module replacement plugin.
3075
3075
3076
3076
**[⬆ Back to Top](#table-of-contents)**
@@ -3444,7 +3444,7 @@ List of 300 VueJS Interview Questions
3444
3444
template: `<div>{{ greet }}</div>`,
3445
3445
computed: {
3446
3446
greet () {
3447
-
return this.\$store.state.msg
3447
+
return this.$store.state.msg
3448
3448
}
3449
3449
}
3450
3450
}
@@ -3793,8 +3793,8 @@ List of 300 VueJS Interview Questions
3793
3793
3794
3794
**[⬆ Back to Top](#table-of-contents)**
3795
3795
3796
-
170. ### Can I use styled components in vuejs?
3797
-
Styled components is basically used for ReactJS applications. If you want to use for VueJS applications, there is vuejs styled components library available under styled component library. VueJS Styled component is a javascript library for stying vuejs applications.
3796
+
170. ### Can I use Styled Components in VueJS?
3797
+
Styled components is a CSS-in-JS library used mainly for ReactJS applications. If you want to use it for VueJS applications, there is a VueJS styled components library port available, however, it is not a common practice.
0 commit comments