// 生命周期plugin export default defineNuxtPlugin({ name: 'hook', //法1 hooks: { 'app:created'() { // const nuxtApp = useNuxtApp() //法2 // nuxtApp.hook('app:beforeMount', () => { // console.log(1) // }) // console.log(nuxtApp) // console.log('app:created') } } })