Gridsome uses Vue Single File Components. This means you add HTML, JavaScript and CSS in the same file. This makes your projects easier to maintain and test and your components more reusable. This is also used for code-splitting in the build process.
Here’s an example of a file we’ll call Card.vue
inside src/components/
:
<template>
<div class="card">
<button @click="onClick">
Change
</button>
</div>
</template>
<script>
export default {
name: 'Card',
data () {
return {
message: 'Try change me!'
}
},
methods: {
onClick () {
this.message = 'Here you go :)'
}
}
}
</script>
<style>
.card {
padding: 20px;
background: #FFF;
}
</style>
Learn more about Single File Components
When you have created a component you can easily import it into your pages. In Gridsome projects it's recommended to put all your .vue components in the src/components folder and import them into Pages or Layouts like this:
<template>
<Card />
</template>
<script>
import Card from '~/components/Card.vue'
export default {
components: {
Card
}
}
</script>
Every Component can have a <static-query>
block with a GraphQL query
to fetch data from data sources. The results will be stored in a
$static
property inside the component.
<template>
<div v-html="$static.post.content" />
</template>
<static-query>
query {
post (id: "1") {
content
}
}
</static-query>