This article relies too much on references to primary sources. (July 2019) |
Original author(s) | Evan You |
---|---|
Initial release | February 2014[1] |
Stable release | 3.0.11[2]
/ 1 April 2021 |
Repository | |
Written in | TypeScript |
Size | 33.30KB min+gzip |
Type | JavaScript framework |
License | MIT License[3] |
Website | vuejs |
Vue.js (commonly referred to as Vue; pronounced /vjuː/, like "view"[4]) is an open-source model–view–viewmodel front end JavaScript framework for building user interfaces and single-page applications.[11] It was created by Evan You, and is maintained by him and the rest of the active core team members.[12]
Vue.js features an incrementally adaptable architecture that focuses on declarative rendering and component composition. The core library is focused on the view layer only.[13] Advanced features required for complex applications such as routing, state management and build tooling are offered via officially maintained supporting libraries and packages.[14]
Vue.js lets you extend HTML with HTML attributes called directives.[15] The directives offer functionality to HTML applications, and come as either built-in or user defined directives.
Vue was created by Evan You after working for Google using AngularJS in a number of projects. He later summed up his thought process: "I figured, what if I could just extract the part that I really liked about Angular and build something really lightweight."[16] The first source code commit to the project was dated July 2013, and Vue was first released the following February, in 2014.
Version | Release date | Title |
---|---|---|
3.0 | September 18, 2020 | One Piece [17] |
2.6 | February 4, 2019 | Macross [18] |
2.5 | October 13, 2017 | Level E [19] |
2.4 | July 13, 2017 | Kill la Kill [20] |
2.3 | April 27, 2017 | JoJo's Bizarre Adventure [21] |
2.2 | February 26, 2017 | Initial D [22] |
2.1 | November 22, 2016 | Hunter X Hunter [23] |
2.0 | September 30, 2016 | Ghost in the Shell [24] |
1.0 | October 27, 2015 | Evangelion [25] |
0.12 | June 12, 2015 | Dragon Ball [26] |
0.11 | November 7, 2014 | Cowboy Bebop [27] |
0.10 | March 23, 2014 | Blade Runner [28] |
0.9 | February 25, 2014 | Animatrix [29] |
0.8 | January 27, 2014 | N/A [30] |
0.7 | December 24, 2013 | N/A [31] |
0.6 | December 8, 2013 | VueJS [32] |
Vue components extend basic HTML elements to encapsulate reusable code. At a high level, components are custom elements to which the Vue's compiler attaches behavior. In Vue, a component is essentially a Vue instance with pre-defined options.[33] The code snippet below contains an example of a Vue component. The component presents a button and prints the number of times the button is clicked:
<template>
<div id="tuto">
<button-clicked v-bind:initial-count="0"></button-clicked>
</div>
</template>
<script>
Vue.component('button-clicked', {
props: ['initialCount'],
data: () => ({
count: 0,
}),
template: '<button v-on:click="onClick">Clicked {{ count }} times</button>',
computed: {
countTimesTwo() {
return this.count * 2;
}
},
watch: {
count(newValue, oldValue) {
console.log(`The value of count is changed from ${oldValue} to ${newValue}.`);
}
},
methods: {
onClick() {
this.count += 1;
}
},
mounted() {
this.count = this.initialCount;
}
});
new Vue({
el: '#tuto',
});
</script>
Vue uses an HTML-based template syntax that allows binding the rendered DOM to the underlying Vue instance's data. All Vue templates are valid HTML that can be parsed by specification-compliant browsers and HTML parsers. Vue compiles the templates into virtual DOM render functions. A virtual Document Object Model (or “DOM”) allows Vue to render components in its memory before updating the browser. Combined with the reactivity system, Vue is able to calculate the minimal number of components to re-render and apply the minimal amount of DOM manipulations when the app state changes.
Vue users can use template syntax or choose to directly write render functions using hyperscript either through function calls or JSX.[34] Render functions allow application to be built from software components.[35]
Vue features a reactivity system that uses plain JavaScript objects and optimized re-rendering. Each component keeps track of its reactive dependencies during its render, so the system knows precisely when to re-render, and which components to re-render.[36]
Vue provides a variety of ways to apply transition effects when items are inserted, updated, or removed from the DOM. This includes tools to:
When an element wrapped in a transition component is inserted or removed, this is what happens:
A traditional disadvantage of single-page applications (SPAs) is the inability to share links to the exact "sub" page within a specific web page. Because SPAs serve their users only one URL-based response from the server (it typically serves index.html or index.vue), bookmarking certain screens or sharing links to specific sections is normally difficult if not impossible. To solve this problem, many client-side routers delimit their dynamic URLs with a "hashbang" (#!), e.g. page.com/#!/. However, with HTML5 most modern browsers support routing without hashbangs.
Vue provides an interface to change what is displayed on the page based on the current URL path – regardless of how it was changed (whether by emailed link, refresh, or in-page links). Additionally, using a front-end router allows for the intentional transition of the browser path when certain browser events (i.e. clicks) occur on buttons or links. Vue itself doesn’t come with front-end hashed routing. But the open source "vue-router" package provides an API to update the application's URL, supports the back button (navigating history), and email password resets or email verification links with authentication URL parameters. It supports mapping nested routes to nested components and offers fine-grained transition control. With Vue, developers are already composing applications with small building blocks building larger components. With vue-router added to the mix, components must merely be mapped to the routes they belong to, and parent/root routes must indicate where children should render.[39]
<div id="app">
<router-view></router-view>
</div>
...
<script>
...
const User = {
template: '<div>User {{ $route.params.id }}</div>'
};
const router = new VueRouter({
routes: [
{ path: '/user/:id', component: User }
]
});
...
</script>
The code above:
websitename.com/user/<id>
.$route.params.id
.<router-view></router-view>
inside the DOM's div#app.websitename.com/user/1
will be:<div id="app">
<div>
<div>User 1</div>
</div>
</div>
The core library comes with tools and libraries both developed by the core team and contributors.
This article incorporates text from a free content work. Licensed under MIT License License statement/permission on Wikimedia Commons. Text taken from Vue.js Guide, Vue.js,
By: Wikipedia.org
Edited: 2021-06-18 12:39:56
Source: Wikipedia.org