-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(runtime-utils): ts-ignore
#build/
import until nuxt v3.12 release
- Loading branch information
Showing
2 changed files
with
4 additions
and
2 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 |
---|---|---|
|
@@ -7,7 +7,8 @@ import type { RouteLocationRaw } from 'vue-router' | |
|
||
import { RouterLink } from './components/RouterLink' | ||
|
||
// @ts-expect-error virtual file | ||
// TODO: remove after Nuxt v3.12 | ||
// @ts-ignore for backwards compatibility | ||
Check failure on line 11 in src/runtime-utils/mount.ts GitHub Actions / lint
Check failure on line 11 in src/runtime-utils/mount.ts GitHub Actions / lint
|
||
import NuxtRoot from '#build/root-component.mjs' | ||
import { tryUseNuxtApp, useRouter } from '#imports' | ||
|
||
|
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 |
---|---|---|
|
@@ -6,7 +6,8 @@ import type { RouteLocationRaw } from 'vue-router' | |
|
||
import { RouterLink } from './components/RouterLink' | ||
|
||
// @ts-expect-error virtual file | ||
// TODO: remove after Nuxt v3.12 | ||
// @ts-ignore for backwards compatibility | ||
Check failure on line 10 in src/runtime-utils/render.ts GitHub Actions / lint
Check failure on line 10 in src/runtime-utils/render.ts GitHub Actions / lint
|
||
import NuxtRoot from '#build/root-component.mjs' | ||
import { tryUseNuxtApp, useRouter } from '#imports' | ||
|
||
|