of Template, Logic & Style • Just use what you already know: HTML, CSS & JavaScript • Embedded preprocessor support: Sass, Less, Pug, Stylus • Component-scoped CSS with a single attribute (no conflicts) Single File Vue Components
class when router is active--> <router-link to="/yo" active-class="active">About</router-link> <!-- named route with params --> <router-link :to="{ name: yo, params: { name: John }}">User</router-link> <!-- custom html tag --> <router-link to="/foo" tag="li">foo</router-link> <!-- renders as --> <li>foo</li>
it: globally / per-route / in-component router.beforeEach((to, from, next) => { }) router.afterEach((to, from, next) => { }) • to: Route : the target Route Object being navigated to. • from: Route : the current route being navigated away from. • next: Function : this function must be called to resolve the hook.
from Vue 1.x to 2.0 vuejs/vue-migration-helper VuejsJobs and VueJobs merging! The brand is undergoing a design change and will be launched as “The Job Board for Vue Developers” very soon. VueJobs.com
Axios - Promise based HTTP client for the browser and node.js Source: https://medium.com/the-vue-point/retiring-vue-resource-871a82880af4#.87gflwp4d Vue 2.0.5 release Performance improvements and bug fixes! vuejs/vue