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
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -212,6 +212,7 @@ List of 300 VueJS Interview Questions
212
212
|203|[What are the drawbacks of dynamic directive arguments?](#what-are-the-drawbacks-of-dynamic-directive-arguments)|
213
213
|204|[What is the special handling for null values in dynamic directive arguments?](#what-is-the-special-handling-for-null-values-in-dynamic-directive-arguments)|
214
214
|205|[Can I use dynamic directive null value for slots?](#can-i-use-dynamic-directive-null-value-for-slots)|
215
+
|206|[What is Vue I18n plugin?](#what-is-vue-i-8n--plugin)|
215
216
216
217
1.### What is VueJS?
217
218
**Vue.js** is an open-source, progressive Javascript framework for building user interfaces that aim to be incrementally adoptable. The core library of VueJS is focused on the `view layer` only, and is easy to pick up and integrate with other libraries or existing projects.
@@ -3539,3 +3540,40 @@ List of 300 VueJS Interview Questions
3539
3540
Dynamic argument values are expected to be strings but it allows `null` as a special value that explicitly indicates that the binding should be removed. Other types will be treated as mistakes and will trigger a warning. So null value can be applied for v-bind and v-on.
3540
3541
205. ### Can I use dynamic directive null value for slots?
3541
3542
No. It can be applied only for v-bind and v-on but not v-slot. This is because v-slot is not a binding and cannot be removed.
3543
+
206. ### What is Vue I18n plugin?
3544
+
Vue I18n is an internationalization plugin of Vue.js. It easily integrates some localization features to your Vue.js Application. The simple usage with in html would be as below,
0 commit comments