-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix wrong code
- Loading branch information
William Sena
committed
May 3, 2023
1 parent
8d41c6d
commit df91f81
Showing
5 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
declare const _default: import("nuxt/app").Plugin<Record<string, unknown>>; | ||
declare const _default: import("#app").Plugin<Record<string, unknown>>; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
import { App } from 'vue' | ||
import { defineNuxtPlugin } from '#app' | ||
import VuePhaserPlugin from './vue.index' | ||
|
||
interface NuxtApp { | ||
vueApp: App | ||
} | ||
|
||
export default defineNuxtPlugin((nuxtApp: NuxtApp) => { | ||
export default defineNuxtPlugin((nuxtApp) => { | ||
nuxtApp.vueApp.use(VuePhaserPlugin) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters