fbpx
Wikipedia

Vue.js

Vue.js (commonly referred to as Vue; pronounced "view"[4]) is an open-source model–view–viewmodel front end JavaScript library for building user interfaces and single-page applications.[10] It was created by Evan You, and is maintained by him and the rest of the active core team members.[11]

Vue.js
Original author(s)Evan You
Initial releaseFebruary 2014; 9 years ago (2014-02)[1]
Repository
  • github.com/vuejs/core
Written inTypeScript
Size33.9 KB min+gzip[2]
TypeJavaScript library
LicenseMIT License[3]
Websitevuejs.org 

Overview Edit

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.[4] Advanced features required for complex applications such as routing, state management and build tooling are offered via officially maintained supporting libraries and packages.[12]

Vue.js allows for extending HTML with HTML attributes called directives.[13] The directives offer functionality to HTML applications, and come as either built-in or user defined directives.

History Edit

Vue was created by Evan You after working for Google using AngularJS in several 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."[14] The first source code commit to the project was dated July 2013, and Vue was first publicly announced the following February, in 2014.[15][16]

Version names are often derived from manga and anime.

Versions Edit

Version Release date Title End of LTS End of Life
3.3 May 11, 2023 Rurouni Kenshin[17]
3.2 August 5, 2021 Quintessential Quintuplets[18]
3.1 June 7, 2021 Pluto[19]
3.0 September 18, 2020 One Piece[20]
2.7 July 1, 2022 Naruto[21] December 31, 2023 December 31, 2023
2.6 February 4, 2019 Macross[22] March 18, 2022 September 18, 2023
2.5 October 13, 2017 Level E[23]
2.4 July 13, 2017 Kill la Kill[24]
2.3 April 27, 2017 JoJo's Bizarre Adventure[25]
2.2 February 26, 2017 Initial D[26]
2.1 November 22, 2016 Hunter X Hunter[27]
2.0 September 30, 2016 Ghost in the Shell[28]
1.0 October 27, 2015 Evangelion[29]
0.12 June 12, 2015 Dragon Ball[30]
0.11 November 7, 2014 Cowboy Bebop[31]
0.10 March 23, 2014 Blade Runner[32]
0.9 February 25, 2014 Animatrix[33]
0.8 January 27, 2014 [34] first version publicly announced[15][16]
0.7 December 24, 2013 [35]
0.6 December 8, 2013 VueJS[36]

When a new major is released ie v3.y.z, the last minor ie 2.x.y will become a LTS release for 18 months (bug fixes and security patches) and for the following 18 months will be in maintenance mode (security patches only).[37]

Features Edit

Components Edit

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.[38] 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> 

Templates Edit

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 can 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.[39] Render functions allow applications to be built from software components.[40]

Reactivity Edit

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.[41]

Transitions Edit

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.[42][43]

Routing Edit

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.[44]

<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:

  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> 

[45]

Ecosystem Edit

The core library comes with tools and libraries both developed by the core team and contributors.

Official tooling Edit

  • Devtools – Browser devtools extension for debugging Vue.js applications
  • Vite – Standard Tooling for rapid Vue.js development
  • Vue Loader – a webpack loader that allows the writing of Vue components in a format called Single-File Components (SFCs)

Official libraries Edit

  • Vue Router – The official router
  • Vuex – Flux-inspired centralized state management
  • Vue Server Renderer – Server-Side Rendering
  • Pinia – New simple state management

See also Edit

Sources Edit

  This article incorporates text from a free content work. Licensed under MIT License (license statement/permission). Text taken from Vue.js Guide​, Vue.js, .

References Edit

  1. ^ "First Week of Launching Vue.js". Evan You.
  2. ^ "@vue/runtime-dom v3.2.45". Bundlephobia. Retrieved January 29, 2023.
  3. ^ "vue/LICENSE". Vue.js. Retrieved April 17, 2017 – via GitHub.
  4. ^ a b c "Introduction". Vuejs.org. Retrieved January 3, 2020.
  5. ^ Macrae, Callum (2018). Vue.js: Up and Running: Building Accessible and Performant Web Apps. O'Reilly Media. ISBN 978-1-4919-9721-5.
  6. ^ Nelson, Brett (2018). Getting to Know Vue.js: Learn to Build Single Page Applications in Vue from Scratch. Apress. ISBN 978-1-4842-3781-6.
  7. ^ Yerburgh, Edd (2019). Testing Vue.js Applications. Manning Publications. ISBN 978-1-61729-524-9.
  8. ^ Freeman, Adam (2018). Pro Vue.js 2. Apress. ISBN 978-1-4842-3805-9.
  9. ^ Franklin, Jack; Wanyoike, Michael; Bouchefra, Ahmed; Silas, Kingsley; Campbell, Chad A.; Jacques, Nilson; Omole, Olayinka; Mulders, Michiel (2019). Working with Vue.js. SitePoint. ISBN 978-1-4920-7144-0.
  10. ^ [5][6][7][8][9][4]
  11. ^ "Meet the Team". Vuejs.org. Retrieved September 23, 2019.
  12. ^ "Evan is creating Vue.js". Patreon. Retrieved March 11, 2017.
  13. ^ "What is Vue.js". W3Schools. Retrieved January 21, 2020.
  14. ^ . Between the Wires. November 3, 2016. Archived from the original on June 3, 2017. Retrieved August 26, 2017.
  15. ^ a b "Vue.js: JavaScript MVVM made simple". Hacker News. February 3, 2014. Retrieved January 29, 2023.
  16. ^ a b "First Week of Launching Vue.js". Evan You. February 11, 2014. Retrieved January 29, 2023.
  17. ^ "v3.3.0 Rurouni Kenshin". Vue.js. May 11, 2023. Retrieved May 12, 2023 – via GitHub.
  18. ^ "v3.2.0 Quintessential Quintuplets". Vue.js. August 5, 2021. Retrieved August 10, 2021 – via GitHub.
  19. ^ "v3.1.0 Pluto". Vue.js. June 7, 2021. Retrieved July 18, 2021 – via GitHub.
  20. ^ "v3.0.0 One Piece". Vue.js. September 18, 2020. Retrieved September 23, 2020 – via GitHub.
  21. ^ "v2.7.0 Naruto". Vue.js. July 1, 2022. Retrieved July 1, 2022 – via GitHub.
  22. ^ "v2.6.0 Macross". Vue.js. February 4, 2019. Retrieved September 23, 2020 – via GitHub.
  23. ^ "v2.5.0 Level E". Vue.js. October 13, 2017. Retrieved September 23, 2020 – via GitHub.
  24. ^ "v2.4.0 Kill la Kill". Vue.js. July 13, 2017. Retrieved September 23, 2020 – via GitHub.
  25. ^ "v2.3.0 JoJo's Bizarre Adventure". Vue.js. April 27, 2017. Retrieved September 23, 2020 – via GitHub.
  26. ^ "v2.2.0 Initial D". Vue.js. February 26, 2017. Retrieved September 23, 2020 – via GitHub.
  27. ^ "v2.1.0 Hunter X Hunter". Vue.js. November 22, 2016. Retrieved September 23, 2020 – via GitHub.
  28. ^ "v2.0.0 Ghost in the Shell". Vue.js. September 30, 2016. Retrieved September 23, 2020 – via GitHub.
  29. ^ "1.0.0 Evangelion". Vue.js. October 27, 2015. Retrieved September 23, 2020 – via GitHub.
  30. ^ "0.12.0: Dragon Ball". Vue.js. June 12, 2015. Retrieved September 23, 2020 – via GitHub.
  31. ^ "v0.11.0: Cowboy Bebop". Vue.js. November 7, 2014. Retrieved September 23, 2020 – via GitHub.
  32. ^ "v0.10.0: Blade Runner". Vue.js. March 23, 2014. Retrieved September 23, 2020 – via GitHub.
  33. ^ "v0.9.0: Animatrix". Vue.js. February 25, 2014. Retrieved September 23, 2020 – via GitHub.
  34. ^ "v0.8.0". Vue.js. January 27, 2014. Retrieved September 23, 2020 – via GitHub.
  35. ^ "v0.7.0". Vue.js. December 24, 2013. Retrieved September 23, 2020 – via GitHub.
  36. ^ "0.6.0: VueJS". Vue.js. December 8, 2013. Retrieved September 23, 2020 – via GitHub.
  37. ^ "Vue Roadmap". Vue.js. November 6, 2022 – via GitHub.
  38. ^ "Components". Vuejs.org. Retrieved March 11, 2017.
  39. ^ "Template Syntax". Vuejs.org. Retrieved March 11, 2017.
  40. ^ "Vue 2.0 is Here!". The Vue Point. September 30, 2016. Retrieved March 11, 2017.
  41. ^ "Reactivity in Depth". Vuejs.org. Retrieved March 11, 2017.
  42. ^ "Transition Effects". Vuejs.org. Retrieved March 11, 2017.
  43. ^ "Transitioning State". Vuejs.org. Retrieved March 11, 2017.
  44. ^ "Routing". Vuejs.org. Retrieved March 11, 2017.
  45. ^ You, Evan. "Vue Nested Routing (2)". Vue Home Page (subpage). Retrieved May 10, 2017.

External links Edit

  • Official website  

this, article, relies, excessively, references, primary, sources, please, improve, this, article, adding, secondary, tertiary, sources, find, sources, news, newspapers, books, scholar, jstor, july, 2019, learn, when, remove, this, template, message, commonly, . This article relies excessively on references to primary sources Please improve this article by adding secondary or tertiary sources Find sources Vue js news newspapers books scholar JSTOR July 2019 Learn how and when to remove this template message Vue js commonly referred to as Vue pronounced view 4 is an open source model view viewmodel front end JavaScript library for building user interfaces and single page applications 10 It was created by Evan You and is maintained by him and the rest of the active core team members 11 Vue jsOriginal author s Evan YouInitial releaseFebruary 2014 9 years ago 2014 02 1 Repositorygithub wbr com wbr vuejs wbr coreWritten inTypeScriptSize33 9 KB min gzip 2 TypeJavaScript libraryLicenseMIT License 3 Websitevuejs wbr org Contents 1 Overview 2 History 2 1 Versions 3 Features 3 1 Components 3 2 Templates 3 3 Reactivity 3 4 Transitions 3 5 Routing 4 Ecosystem 4 1 Official tooling 4 2 Official libraries 5 See also 6 Sources 7 References 8 External linksOverview EditVue js features an incrementally adaptable architecture that focuses on declarative rendering and component composition The core library is focused on the view layer only 4 Advanced features required for complex applications such as routing state management and build tooling are offered via officially maintained supporting libraries and packages 12 Vue js allows for extending HTML with HTML attributes called directives 13 The directives offer functionality to HTML applications and come as either built in or user defined directives History EditVue was created by Evan You after working for Google using AngularJS in several 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 14 The first source code commit to the project was dated July 2013 and Vue was first publicly announced the following February in 2014 15 16 Version names are often derived from manga and anime Versions Edit Version Release date Title End of LTS End of Life3 3 May 11 2023 Rurouni Kenshin 17 3 2 August 5 2021 Quintessential Quintuplets 18 3 1 June 7 2021 Pluto 19 3 0 September 18 2020 One Piece 20 2 7 July 1 2022 Naruto 21 December 31 2023 December 31 20232 6 February 4 2019 Macross 22 March 18 2022 September 18 20232 5 October 13 2017 Level E 23 2 4 July 13 2017 Kill la Kill 24 2 3 April 27 2017 JoJo s Bizarre Adventure 25 2 2 February 26 2017 Initial D 26 2 1 November 22 2016 Hunter X Hunter 27 2 0 September 30 2016 Ghost in the Shell 28 1 0 October 27 2015 Evangelion 29 0 12 June 12 2015 Dragon Ball 30 0 11 November 7 2014 Cowboy Bebop 31 0 10 March 23 2014 Blade Runner 32 0 9 February 25 2014 Animatrix 33 0 8 January 27 2014 34 first version publicly announced 15 16 0 7 December 24 2013 35 0 6 December 8 2013 VueJS 36 When a new major is released ie v3 y z the last minor ie 2 x y will become a LTS release for 18 months bug fixes and security patches and for the following 18 months will be in maintenance mode security patches only 37 Features EditComponents Edit 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 38 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 lt template gt lt div id tuto gt lt button clicked v bind initial count 0 gt lt button clicked gt lt div gt lt template gt lt script gt Vue component button clicked props initialCount data gt count 0 template lt button v on click onClick gt Clicked count times lt button gt 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 lt script gt Templates Edit 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 can 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 39 Render functions allow applications to be built from software components 40 Reactivity Edit 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 41 Transitions Edit 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 jsWhen an element wrapped in a transition component is inserted or removed this is what happens 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 If the transition component provided JavaScript hooks these hooks will be called at appropriate timings 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 42 43 Routing Edit 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 44 lt div id app gt lt router view gt lt router view gt lt div gt lt script gt const User template lt div gt User route params id lt div gt const router new VueRouter routes path user id component User lt script gt The code above Sets a front end route at websitename com user lt id gt Which will render in the User component defined in const User 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 This template varying by the params passed into the router will be rendered into lt router view gt lt router view gt inside the DOM s div app The finally generated HTML for someone typing in websitename com user 1 will be lt div id app gt lt div gt lt div gt User 1 lt div gt lt div gt lt div gt 45 Ecosystem EditThe core library comes with tools and libraries both developed by the core team and contributors Official tooling Edit Devtools Browser devtools extension for debugging Vue js applications Vite Standard Tooling for rapid Vue js development Vue Loader a webpack loader that allows the writing of Vue components in a format called Single File Components SFCs Official libraries Edit Vue Router The official router Vuex Flux inspired centralized state management Vue Server Renderer Server Side Rendering Pinia New simple state managementSee also Edit nbsp Free and open source software portalComparison of JavaScript based web frameworks React AngularJS Angular Quasar Framework Web framework JavaScript library Model view ViewModel Nuxt jsSources Edit nbsp This article incorporates text from a free content work Licensed under MIT License license statement permission Text taken from Vue js Guide Vue js References Edit First Week of Launching Vue js Evan You vue runtime dom v3 2 45 Bundlephobia Retrieved January 29 2023 vue LICENSE Vue js Retrieved April 17 2017 via GitHub a b c Introduction Vuejs org Retrieved January 3 2020 Macrae Callum 2018 Vue js Up and Running Building Accessible and Performant Web Apps O Reilly Media ISBN 978 1 4919 9721 5 Nelson Brett 2018 Getting to Know Vue js Learn to Build Single Page Applications in Vue from Scratch Apress ISBN 978 1 4842 3781 6 Yerburgh Edd 2019 Testing Vue js Applications Manning Publications ISBN 978 1 61729 524 9 Freeman Adam 2018 Pro Vue js 2 Apress ISBN 978 1 4842 3805 9 Franklin Jack Wanyoike Michael Bouchefra Ahmed Silas Kingsley Campbell Chad A Jacques Nilson Omole Olayinka Mulders Michiel 2019 Working with Vue js SitePoint ISBN 978 1 4920 7144 0 5 6 7 8 9 4 Meet the Team Vuejs org Retrieved September 23 2019 Evan is creating Vue js Patreon Retrieved March 11 2017 What is Vue js W3Schools Retrieved January 21 2020 Evan You Between the Wires November 3 2016 Archived from the original on June 3 2017 Retrieved August 26 2017 a b Vue js JavaScript MVVM made simple Hacker News February 3 2014 Retrieved January 29 2023 a b First Week of Launching Vue js Evan You February 11 2014 Retrieved January 29 2023 v3 3 0 Rurouni Kenshin Vue js May 11 2023 Retrieved May 12 2023 via GitHub v3 2 0 Quintessential Quintuplets Vue js August 5 2021 Retrieved August 10 2021 via GitHub v3 1 0 Pluto Vue js June 7 2021 Retrieved July 18 2021 via GitHub v3 0 0 One Piece Vue js September 18 2020 Retrieved September 23 2020 via GitHub v2 7 0 Naruto Vue js July 1 2022 Retrieved July 1 2022 via GitHub v2 6 0 Macross Vue js February 4 2019 Retrieved September 23 2020 via GitHub v2 5 0 Level E Vue js October 13 2017 Retrieved September 23 2020 via GitHub v2 4 0 Kill la Kill Vue js July 13 2017 Retrieved September 23 2020 via GitHub v2 3 0 JoJo s Bizarre Adventure Vue js April 27 2017 Retrieved September 23 2020 via GitHub v2 2 0 Initial D Vue js February 26 2017 Retrieved September 23 2020 via GitHub v2 1 0 Hunter X Hunter Vue js November 22 2016 Retrieved September 23 2020 via GitHub v2 0 0 Ghost in the Shell Vue js September 30 2016 Retrieved September 23 2020 via GitHub 1 0 0 Evangelion Vue js October 27 2015 Retrieved September 23 2020 via GitHub 0 12 0 Dragon Ball Vue js June 12 2015 Retrieved September 23 2020 via GitHub v0 11 0 Cowboy Bebop Vue js November 7 2014 Retrieved September 23 2020 via GitHub v0 10 0 Blade Runner Vue js March 23 2014 Retrieved September 23 2020 via GitHub v0 9 0 Animatrix Vue js February 25 2014 Retrieved September 23 2020 via GitHub v0 8 0 Vue js January 27 2014 Retrieved September 23 2020 via GitHub v0 7 0 Vue js December 24 2013 Retrieved September 23 2020 via GitHub 0 6 0 VueJS Vue js December 8 2013 Retrieved September 23 2020 via GitHub Vue Roadmap Vue js November 6 2022 via GitHub Components Vuejs org Retrieved March 11 2017 Template Syntax Vuejs org Retrieved March 11 2017 Vue 2 0 is Here The Vue Point September 30 2016 Retrieved March 11 2017 Reactivity in Depth Vuejs org Retrieved March 11 2017 Transition Effects Vuejs org Retrieved March 11 2017 Transitioning State Vuejs org Retrieved March 11 2017 Routing Vuejs org Retrieved March 11 2017 You Evan Vue Nested Routing 2 Vue Home Page subpage Retrieved May 10 2017 External links EditOfficial website nbsp Retrieved from https en wikipedia org w index php title Vue js amp oldid 1178733600 History, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.