Skip to content

Commit 44ce9e8

Browse files
committed
Fix typos
1 parent 4f9c526 commit 44ce9e8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ List of 300 VueJS Interview Questions
233233
|209| [How do you handle Pluralization?](#how-do-you-handle-pluralization)|
234234
|210| [How to implement DateTime localization?](#how-to-implement-date-time-localization)|
235235
|211| [How do you implement Number localization?](#how-do-you-implement-number-localization)|
236-
|212| [How do you perform locale changing](#how-do-you-perform-locale-changin)|
236+
|212| [How do you perform locale changing](#how-do-you-perform-locale-changing)|
237237
|213| [What is Lazy loading translations?](#what-is-lazy-loading-translations)|
238238
|214| [What is the main difference between method and computed property?](#what-is-the-main-difference-between-method-and-computed-property)|
239239
|215| [What is vuetify?](#what-is-vuetify)|
@@ -1992,8 +1992,8 @@ List of 300 VueJS Interview Questions
19921992
},
19931993
// Similar to `v-bind:class`, accepting either a string, object, or array of strings and objects.
19941994
class: {
1995-
classsName1: true,
1996-
classsName2: false
1995+
className1: true,
1996+
className2: false
19971997
}
19981998
// ....
19991999
},
@@ -2044,7 +2044,7 @@ List of 300 VueJS Interview Questions
20442044
72. ### List down the template equivalents in render functions?
20452045
VueJS provides proprietary alternatives and plain javascript usage for the template features.
20462046
2047-
Let's list down them in a table for comparision,
2047+
Let's list down them in a table for comparison,
20482048

20492049
| Templates | Render function |
20502050
|---- | --------- |
@@ -2137,7 +2137,7 @@ List of 300 VueJS Interview Questions
21372137
**[⬆ Back to Top](#table-of-contents)**
21382138
21392139
79. ### What are dynamic components?
2140-
The dynamic component will allow you to dynamically switch beetween multiple components without updating the route of the application and even retaining the state of the component when switching back to the initial component. It works by using `<component>` tag with `v-bind:is` attribute which accept dynamic component.
2140+
The dynamic component will allow you to dynamically switch between multiple components without updating the route of the application and even retaining the state of the component when switching back to the initial component. It works by using `<component>` tag with `v-bind:is` attribute which accept dynamic component.
21412141
21422142
Let's create a dynamic component vue instance to switch between different pages of a website,
21432143
```javascript
@@ -3210,7 +3210,7 @@ List of 300 VueJS Interview Questions
32103210
137. ### What is the procedure to run tests in node?
32113211
By proper mocking, you can bundle tests with webpack and run them on node without having depenceny on Browser API. It involves 2 steps,
32123212
1. **Create webpack config:** Create webpack config with proper .babelrc
3213-
```javscript
3213+
```javascript
32143214
// webpack.config.js
32153215
module.exports = {
32163216
entry: './test.js',
@@ -3615,7 +3615,7 @@ List of 300 VueJS Interview Questions
36153615
}
36163616
})
36173617
```
3618-
You can't directly invoke mutation instead you need to call `store.commit` with its type. The above mutation would be triggered as folows
3618+
You can't directly invoke mutation instead you need to call `store.commit` with its type. The above mutation would be triggered as follows
36193619
```javascript
36203620
store.commit('increment')
36213621
```
@@ -3854,7 +3854,7 @@ List of 300 VueJS Interview Questions
38543854
}
38553855
}
38563856
```
3857-
As per the above example, When you try to dispatch actionTwo it dispatchs actionOne first and then commits respective mutation. You can still simplify with async/await as below,
3857+
As per the above example, When you try to dispatch actionTwo it dispatches actionOne first and then commits respective mutation. You can still simplify with async/await as below,
38583858
```javascript
38593859
actions: {
38603860
async actionOne ({ commit }) {

0 commit comments

Comments
 (0)