-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: composables useNuxtDevTools (#383)
- Loading branch information
Showing
6 changed files
with
89 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Composables | ||
|
||
In case you might want to open or control the Nuxt DevTools in your application on development, a composable `useNuxtDevtools` is registered with auto-import. | ||
|
||
```vue | ||
<script setup> | ||
// Returns undefined in production mode or when the DevTools are not enabled | ||
const devtoolsClient = useNuxtDevtools() // NuxtDevToolsHostClient | undefined | ||
</script> | ||
<template> | ||
<button | ||
v-if="devtoolsClient" | ||
@click="devtoolsClient.devtools.navigate('/modules/components')" | ||
> | ||
<!-- Open the DevTools and navigate to the components tab --> | ||
Open DevTools | ||
</button> | ||
</template> | ||
``` | ||
|
||
When you have auto-import disabled, you can also import it explicitly: | ||
|
||
```ts | ||
import { useNuxtDevtools } from '#imports' | ||
``` | ||
|
||
Checkout it's type definition for more available methods. |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import type { Ref } from 'vue' | ||
import { shallowRef } from 'vue' | ||
import type { NuxtDevtoolsHostClient } from '../types' | ||
|
||
/** | ||
* Get Nuxt DevTools client for host app | ||
* | ||
* Returns undefined if not in development mode or the devtools is not enabled | ||
*/ | ||
export function useNuxtDevTools(): Ref<NuxtDevtoolsHostClient | undefined> { | ||
const r = shallowRef() | ||
if (!process.dev) | ||
return r | ||
|
||
if (process.server) | ||
return r | ||
|
||
if (window.__NUXT_DEVTOOLS_HOST__) { | ||
r.value = window.__NUXT_DEVTOOLS_HOST__ | ||
} | ||
else { | ||
Object.defineProperty(window, '__NUXT_DEVTOOLS_HOST__', { | ||
set(value) { | ||
r.value = value | ||
}, | ||
get() { | ||
return r.value | ||
}, | ||
enumerable: false, | ||
configurable: true, | ||
}) | ||
} | ||
return r | ||
} |
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