Originally posted @ https://rasulkireev.com/gridsome-page-scripts/
Let's say you want to add an external library to your Gridsome website. In my case, I really wanted to add hypothes.is to my website.
Hypothes.is tries to enable a conversation over the world's knowledge. In Layman's terms, it allows users to comment, highlight, and annotate content on any site. Adding it to my site, I will help people explore this tool and will hopefully drive more conversation about my posts.
TL;DR
Add script tags to your site via the mounted
function.
export default {
mounted() {
let hypothesisScript = document.createElement("script")
hypothesisScript.setAttribute('src', 'https://hypothes.is/embed.js')
document.body.appendChild(hypothesisScript)
},
...
}
I can add hypothes.is to my site by adding the following script tag to my index.html, right above the closing body tag.
<script src="https://hypothes.is/embed.js" async></script>
This will add the hypothesis sidebar to all my pages. This can be a good enough solution. However, I don't want to crowd each page on my site with this sidebar. Well then, how can I add it to specific Pages only?
Given Gridsome's structure, it is very easy to isolate specific pages. For example, we could target Post.vue
if I only want this script in articles. Or I could target About.vue
if I wanted to add to about page only.
├── content
| ├── articles
| ├── notes
| ├── now
├── gridsome.config.js
├── gridsome.server.js
├── src
| ├── components
| | └── socialShareButtons.vue
| ├── index.html
| ├── layouts
| | ├── Default.vue
| ├── main.js
| ├── pages
| | ├── 404.vue
| | ├── About.vue
| | ├── Articles.vue
| | ├── Index.vue
| └── templates
| ├── BookNote.vue
| └── Post.vue
Now the question is: "How do I add the script tag?". If you added in the templates, it will show up and load in the middle of the page, which is not ideal. We want this script to be right inserted right before the closing body tag.
Well, we can do this with a mounted
function:
export default {
mounted() {
let hypothesisScript = document.createElement("script")
hypothesisScript.setAttribute('src', 'https://hypothes.is/embed.js')
document.body.appendChild(hypothesisScript)
},
...
}
Let's review.
- Create a variable/element called
script
- Set the src attribute to the library URL
- Note: when you add a script via a script (very meta) async tag is added automatically, so no need to worry about it
-
Mount
the element to the body
Now you have your desired external library only on pages you want.
If you have any feed back please leave it on Twitter or on HackerNews. Thanks a ton in advance!
Top comments (0)