Source plugin for fetching data from Google Sheets.
Gridsome: >0.7.0
yarn add gridsome-source-google-sheets
npm
npm install gridsome-source-google-sheets
You will need to generate a google api key here. The sheetId can be found on the sheets url. It is the large hash number near the end. You will also need to make your spreadsheet viewable to the public to use the api credentials.
module.exports = {
siteName: 'Gridsome',
plugins: [
{
use: 'gridsome-source-google-sheets',
options: {
sheetId: 'GOOGLE_SHEET_ID',
apiKey: 'GOOGLE_API_KEY',
// type: 'TYPE_NAME', //Optional - default is googleSheet. Used for graphql queries.
}
}
]
}
<page-query>
query MyData {
allGoogleSheet {
edges {
node {
id
title
}
}
}
}
</page-query>
<template>
<div>
{{ $page.allGoogleSheet.node.id }}
</div>
<div>
{{ $page.allGoogleSheet.node.title }}
</div>
</template>
To use this in a template first setup the template route in gridsome.config.js
module.exports = {
siteName: 'Gridsome',
plugins: [
{
use: 'gridsome-source-google-sheets',
options: {
sheetId: 'GOOGLE_SHEET_ID',
apiKey: 'GOOGLE_API_KEY',
// type: 'TYPE_NAME', //Optional - default is googleSheet. Used for graphql queries.
}
}
],
templates: {
googleSheet: [
{
path: '/:id',
component: './src/templates/googleSheet.vue'
}
]
}
}
<template>
<layout>
<div>{{$page.googleSheet.title}}</div>
<div>{{$page.googleSheet.body}}</div>
</layout>
</template>
<page-query>
query Post ($path: String!) {
googleSheet (path: $path) {
title
body
}
}
</page-query>
- Max columns 52
- Max rows 10000