Skip to content

Commit e3b9393

Browse files
committed
Add vuetify questions
1 parent 3e83071 commit e3b9393

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ List of 300 VueJS Interview Questions
221221
|212| [How do you perform locale changing](#how-do-you-perform-locale-changin)|
222222
|213| [What is Lazy loading translations?](#what-is-lazy-loading-translations)|
223223
|214| [What is the main difference between method and computed property?](#what-is-the-main-difference-between-method-and-computed-property)|
224+
|215| [What is vuetify?](#what-is-vuetify)|
224225

225226
1. ### What is VueJS?
226227
**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.
@@ -3904,5 +3905,16 @@ List of 300 VueJS Interview Questions
39043905
```
39053906
214. ### What is the main difference between method and computed property?
39063907
The main difference between a computed property and a method is that computed properties are cached and invoke/change only when their dependencies change. Whereas a method will evaluate every time it's called.
3908+
215. ### What is vuetify?
3909+
Vuetify is a semantic component material framework for Vue. It aims to provide clean, semantic and reusable components that make building application easier. The installation and configuration is simple as below,
3910+
```javascript
3911+
npm install Vuetify
3912+
```
3913+
```javascript
3914+
import Vue from 'vue'
3915+
import Vuetify from 'vuetify' // Import Vuetify to your project
3916+
3917+
Vue.use(Vuetify) // Add Vuetify as a plugin
3918+
```
39073919
39083920

0 commit comments

Comments
 (0)