mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-23 11:52:38 +00:00
9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
|
export default defineNuxtPlugin((nuxtApp) => {
|
||
|
const route = useRoute()
|
||
|
nuxtApp.hook('page:loading:end', () => {
|
||
|
if (route.path === '/page-load-hook') {
|
||
|
console.log('page:loading:end')
|
||
|
}
|
||
|
})
|
||
|
})
|