mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
5 lines
156 B
JavaScript
5 lines
156 B
JavaScript
export default function ({ route }, inject) {
|
|
// Inject route's fullPath as seen initially within the plugin.
|
|
inject('routeFullPath', route.fullPath)
|
|
}
|