From 86ffd7803e1f9d09f601b46d5fc03d0b1e7c5f76 Mon Sep 17 00:00:00 2001 From: Danylo Krutoholov <39316940+skylightxo@users.noreply.github.com> Date: Fri, 30 Dec 2022 22:58:04 +0300 Subject: [PATCH] fix types & text --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 46e582c..87c54ac 100644 --- a/README.md +++ b/README.md @@ -3070,7 +3070,7 @@ List of 300 VueJS Interview Questions **[⬆ Back to Top](#table-of-contents)** -133. ### Is Vuex supports hot reloading? +133. ### Does Vuex support hot reloading? 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. **[⬆ Back to Top](#table-of-contents)** @@ -3444,7 +3444,7 @@ List of 300 VueJS Interview Questions template: `
{{ greet }}
`, computed: { greet () { - return this.\$store.state.msg + return this.$store.state.msg } } } @@ -3793,8 +3793,8 @@ List of 300 VueJS Interview Questions **[⬆ Back to Top](#table-of-contents)** -170. ### Can I use styled components in vuejs? - 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. +170. ### Can I use Styled Components in VueJS? + 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. **[⬆ Back to Top](#table-of-contents)**