⬅️ Back to Table of Contents
📄 index.ts
📊 Analysis Summary
Metric |
Count |
📦 Imports |
8 |
📊 Variables & Constants |
3 |
📐 Interfaces |
3 |
📚 Table of Contents
🛠️ File Location:
📂 packages/nuxt/index.ts
📦 Imports
Name |
Source |
Import |
unimport |
Preset |
unimport |
dirname |
node:path |
resolve |
node:path |
fileURLToPath |
node:url |
defineNuxtModule |
@nuxt/kit |
metadata |
@vueuse/metadata |
isPackageExists |
local-pkg |
Variables & Constants
Name |
Type |
Kind |
Value |
Exported |
disabledFunctions |
string[] |
const |
`[ |
|
// Vue 3 built-in |
|
|
|
|
'toRefs', |
|
|
|
|
'toRef', |
|
|
|
|
'toValue', |
|
|
|
|
// Nuxt built-in
'useFetch',
'useCookie',
'useHead',
'useStorage',
'useImage',
]| ✗ |
|
packages|
string[]| const |
[
'core',
'shared',
'components',
'motion',
'firebase',
'rxjs',
'sound',
'math',
'router',
]| ✗ |
|
names|
any[]| const |
[i.name, ...i.alias || []]` | ✗ |
Interfaces
VueUseNuxtOptions
Interface Code
export interface VueUseNuxtOptions {
/**
* @default true
*/
autoImports?: boolean
/**
* @experimental
* @default false
*/
ssrHandlers?: boolean
}
Properties
Name |
Type |
Optional |
Description |
autoImports |
boolean |
✓ |
|
ssrHandlers |
boolean |
✓ |
|
NuxtConfig
Interface Code
interface NuxtConfig {
vueuse?: VueUseNuxtOptions
}
Properties
Name |
Type |
Optional |
Description |
vueuse |
VueUseNuxtOptions |
✓ |
|
NuxtOptions
Interface Code
interface NuxtOptions {
vueuse?: VueUseNuxtOptions
}
Properties
Name |
Type |
Optional |
Description |
vueuse |
VueUseNuxtOptions |
✓ |
|