Vue.js

Vue.js
Original author(s) Evan You (尤雨溪)
Initial release February 2014 (2014-02)[1]
Stable release
2.5.17 / August 1, 2018 (2018-08-01)[2]
Repository Edit this at Wikidata
Written in JavaScript
Platform Cross-platform
Size 30.67 KB production
279 KB development
Type JavaScript framework
License MIT License[3]
Website https://vuejs.org

Vue.js (commonly referred to as Vue; pronounced /vj/, like view) is an open-source JavaScript framework for building user interfaces.[4] Integration into projects that use other JavaScript libraries is simplified with Vue because it is designed to be incrementally adoptable. Vue can also function as a web application framework capable of powering advanced single-page applications.

Overview

Vue.js is a JavaScript front-end framework that was built to organize and simplify web development.

The project focuses on making ideas in web UI development (components, declarative UI, hot-reloading, time-travel debugging, etc.) more approachable. It attempts to be less opinionated and thus easier for developers to pick up.

It features an incrementally adoptable architecture. The core library focuses on declarative rendering and component composition and can be embedded into existing pages. Advanced features required for complex applications such as routing, state management and build tooling are offered via officially maintained supporting libraries and packages.[5]

History

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."[6] Vue was originally released in February 2014.

Features

Templates

Vue uses an HTML-based template syntax that allows you to declaratively bind the rendered DOM to the underlying Vue instance’s data. All Vue templates are valid HTML that can be parsed by spec-compliant browsers and HTML parsers. Under the hood, Vue compiles the templates into virtual DOM render functions. 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.

In Vue, you can use the template syntax or choose to directly write render functions using JSX. In order to do so just replace the template option with a render function.[7] Render functions open up possibilities for powerful component-based patterns — for example, the new transition system is now completely component-based, using render functions internally.[8]

Reactivity

One of Vue’s most distinctive features is the unobtrusive reactivity system. Models are just plain JavaScript objects. When you modify them, the view updates. It makes state management very simple and intuitive. Vue provides optimized re-rendering out of the box without you having to do anything. 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.[9]

Components

Components are one of the most powerful features of Vue. In a large application, it is necessary to divide the whole app into small, self-contained, and often reusable components to make development manageable. 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.[10] 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:

<div id="tuto">
	<buttonclicked v-bind:initial_count="0"></buttonclicked>
</div>
<script>
Vue.component('buttonclicked', {
  props: ["initial_count"],
  data: function() {return {"count": 0} } ,
  template: '<button v-on:click="onclick">Clicked <nowiki>{{ count }}</nowiki> times</button>',
  methods: {
    "onclick": function() {
        this.count = this.count + 1;
    }
  },
  mounted: function() {
    this.count = this.initial_count;
  }
});

new Vue({
  el: '#tuto',
});
</script>

Transitions

Vue provides a variety of ways to apply transition effects when items are inserted, updated, or removed from the DOM. This includes tools to:

  • automatically apply classes for CSS transitions and animations
  • integrate third-party CSS animation libraries, such as Animate.css
  • use JavaScript to directly manipulate the DOM during transition hooks
  • integrate third-party JavaScript animation libraries, such as Velocity.js

When an element wrapped in a transition component is inserted or removed, this is what happens:

  1. Vue will automatically sniff whether the target element has CSS transitions or animations applied. If it does, CSS transition classes will be added/removed at appropriate timings.
  2. If the transition component provided JavaScript hooks, these hooks will be called at appropriate timings.
  3. If no CSS transitions/animations are detected and no JavaScript hooks are provided, the DOM operations for insertion and/or removal will be executed immediately on next frame.[11][12]

Routing

In a single-page application (SPA) one initial disadvantage was 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), saving bookmarks, or sharing links to a specific article would be impossible. To solve this problem front end routers provide artificial hash-based URLs originally split by a hashbang (#!) page.com/#!/. However, with HTML5 most modern browsers support routing without the use of a hashbang.

JavaScript libraries like Vue provide an easy 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 change browser URL, use the back button (hash history), and email password resets or email verification links with authentication parameters provided in the URL. It supports mapping nested routes to nested components and offers fine-grained transition control. Creating a front end routed Single-Page Application with Vue + vue-router is made simple. 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.[13]

<div id="app">
  <router-view></router-view>
</div>
const User = {
  template: '<div>User <nowiki>{{ $route.params.id }}</nowiki></div>'
}

const router = new VueRouter({
  routes: [
    { path: '/user/:id', component: User }
  ]
})

The code above:

  1. Sets a front-end route at websitename.com/user/<id>.
  2. Which will render in the User component defined in (const User...)
  3. Allows the User component to pass in the particular id of the user which was typed into the URL using the $route object's params key: $route.params.id.
  4. This template (varying by the params passed into the router) will be rendered into <router-view></router-view> inside the DOM's div#app.
  5. The finally generated HTML for someone typing in: websitename.com/user/1 will be:
<div id="app">
  <div>
    <div>User 1</div>
  </div>
</div>

[14]

Integrations

A variety of third parties leverage Vue to extend the reach beyond the core framework.

Mobility

UI Toolkits

Supporting libraries

See also

References

  1. "First Week of Launching Vue.js". Evan You.
  2. "Vue.js Releases". GitHub.
  3. "vue/LICENSE". GitHub. Retrieved 17 April 2017.
  4. "Introduction — Vue.js". Retrieved 2017-03-11.
  5. "Evan is creating Vue.js | Patreon". Patreon. Retrieved 2017-03-11.
  6. "Between the Wires | Evan You". Between the Wires. 2016-11-03. Archived from the original on 2017-06-03. Retrieved 2017-08-26.
  7. "Template Syntax — Vue.js". Retrieved 2017-03-11.
  8. "Vue 2.0 is Here!". The Vue Point. 2016-09-30. Retrieved 2017-03-11.
  9. "Reactivity in Depth — Vue.js". Retrieved 2017-03-11.
  10. "Components — Vue.js". Retrieved 2017-03-11.
  11. "Transition Effects — Vue.js". Retrieved 2017-03-11.
  12. "Transitioning State — Vue.js". Retrieved 2017-03-11.
  13. "Routing — Vue.js". Retrieved 2017-03-11.
  14. You, Evan. "Vue Nested Routing (2)". Vue Home Page (subpage). Retrieved 10 May 2017.
  15. "vue-router". router.vuejs.org. Archived from the original on 2017-03-05. Retrieved 2017-03-11.
  16. "vuex". vuex.vuejs.org. Retrieved 2017-03-11.
  17. "vue-loader". vue-loader.vuejs.org. Archived from the original on 2017-03-06. Retrieved 2017-03-11.
  18. "vueify". GitHub. Retrieved 2017-03-11.
  19. "vue-cli". GitHub. Retrieved 2017-03-11.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.