Home>Article>Web Front-end> Does vue belong to html5?
vue does not belong to html5; vue is a progressive JavaScript framework for building user interfaces, and is also a typical MVVM model framework. HTML5 is a new standard for html and a hypertext editing language. is a standard markup language used to create web pages, so there is no relationship between the two.
The operating environment of this tutorial: Windows 10 system, HTML5 version, Dell G3 computer.
1. What is vue?
Vue is a progressive JavaScript framework for building user interfaces; at the same time, it is a typical MVVM model framework (ie: view layer - view model layer - model layer).
2. What is the MVVM model?
MVVM is the abbreviation of View-ViewModel-Model (ie: view layer-view model layer-model layer). View is called the view layer, which can be understood as an HTML page; Model is called the model layer, which is responsible for processing business logic and interacting with the server; ViewModel is called the view model layer, and the Vue framework comes into play here. It works, mainly as a communication bridge between the View layer and the Model layer.
3. What is HTML5?
HTML5 is a new standard for HTML. It is a hypertext markup language and a standard markup language used to create web pages. It uses a series of logos to standardize document formats on the Internet.
4.The difference between vue and HTML5
Difference:
1.vue is a progressive JavaScript framework, while HTML5 is a hypertext Markup language;
2. During development, the vue framework decouples the view layer and model layer through the mvvm mode, while HTML5 native open data and tags are tightly coupled;
Contact:
1.vue is a front-end framework, but it is still based on HTML, CSS, and JavaScript. After compilation, it is still composed of HTML, CSS, and JavaScript.
(Learning video sharing:css video tutorial,html video tutorial)
The above is the detailed content of Does vue belong to html5?. For more information, please follow other related articles on the PHP Chinese website!