Skip to content

v0.6.2

Compare
Choose a tag to compare
@yyx990803 yyx990803 released this 01 Oct 21:26
· 1461 commits to dev since this release

New

  • name is now also exposed in $route objects for named routes. Its value will always be the name of the deepest matched route that has a name.

  • v-link now also accept a replace option (thanks to @wprater):

    <a v-link="{ path: '/...', replace: true }">

    Similar to calling router.replace(path), this navigation won't leave a record in browser history.

Fixed

  • #156 v-link not working on non-anchor elements