-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #492 from Baroshem/chore/2.0.0
Chore/2.0.0
- Loading branch information
Showing
31 changed files
with
612 additions
and
146 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
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
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 |
---|---|---|
|
@@ -312,7 +312,7 @@ export defaultNuxtConfig({ | |
### The `useScript` composable | ||
Starting from Nuxt 3.11, it is possible to insert any external script in one single line with the new `useScript` composable. | ||
The Nuxt Scripts module allows you to insert any external script in one single line with its `useScript` composable. | ||
```ts | ||
useScript('https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js') | ||
|
@@ -324,24 +324,24 @@ The `useScript` method has several key features: | |
- It does not insert inline event handlers, therefore CSP will never block the script from executing after load | ||
- It is designed to load and execute asynchronously, which means you don't have to write code to check whether the script has finished loading before using it | ||
For all of these reasons, we strongly recommend `useScript` as the best way to load your external scripts in a CSP-compatible way. | ||
In addition, Nuxt Scripts provide easy integration of `useScript` into any Nuxt application: | ||
- A number of standard scripts are already pre-packaged | ||
- You can load your scripts globally in `nuxt.config.ts` | ||
- `useScript` is auto-imported | ||
The `unjs/unhead` repo has a [detailed section here](https://unhead.unjs.io/usage/composables/use-script) on how to use `useScript`. | ||
For all of these reasons, we strongly recommend using the Nuxt Scripts module as the best way to load your external scripts in a CSP-compatible way. | ||
Check out their examples and find out how easy it is to include Google Analytics in your application: | ||
Check out their examples on [@nuxt/scripts](https://scripts.nuxt.com) and find out how easy it is to include Google Analytics in your application: | ||
```ts | ||
import { useScript } from 'unhead' | ||
const { gtag } = useScript({ | ||
src: 'https://www.google-analytics.com/analytics.js', | ||
}, { | ||
const { gtag } = useScript('https://www.google-analytics.com/analytics.js', { | ||
use: () => ({ gtag: window.gtag }) | ||
}) | ||
// Now use any feature of Google's gtag() function as you wish | ||
// Instead of writing complex code to find and check window.gtag | ||
``` | ||
If you don't want to install the Nuxt Scripts module, you can still use the uderlying native `useScript` method. You will need to `import { useScript } from '@unhead/vue'` in order to use it. | ||
### The `useHead` composable | ||
|
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,10 @@ | ||
<template> | ||
<div> | ||
<h1>Server-only Nuxt-Island component</h1> | ||
<p>Nonce: <span id="server-nonce">{{ nonce }}</span></p> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
const nonce = useNonce() | ||
</script> |
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,6 @@ | ||
<template> | ||
<div> | ||
Island Page | ||
<ServerComponent /> | ||
</div> | ||
</template> |
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
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
Oops, something went wrong.