Get route by name and params for vue-router
问题 I am using Vue with vue-router. For product items in a list view I would like to generate JSON-LN annotations with the url attribute set to the path of the product detail view. I know I can get the current route's path by using this.$route.path but is there a way to get a distinct route path as it would be rendered with <router-link :to={name: 'ProductDetail', params: {id: some_id, slug: some_slug}}></router-link> to inject the route's path somewhere else? 回答1: You are looking for the Router