·
Oct 22, 2020 Edinburgh Napier UniversityIf you are preparing for a Vue.js interview, then these are 10 quick-fire questions that you should be prepared to answer.
1. What is Vue.js?Vue.js is frontend JavaScript framework for building user interfaces with a focus on single-page applications. It promotes “high decoupling” which makes it really easy for developers to create user interfaces and rapid prototyping.
2. What are the benefits of Vue.js?Vue.js is lightweight and therefore highly performant. It is developer-friendly, hence easy to learn. It is highly flexible and has great tooling.
3. What is a Vue instance?The Vue instance, often referred to as vm
in a Vue application is the ViewModel of the MVVM pattern that Vue follows. The Vue instance is the root of a Vue application.
new Vue({
render: h => h(App),
}).$mount(‘#app’)
A new Vue instance is created and mounted to an HTML element that contains the id #app
.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4