Contentful Vue
A Vue JS plugin for the Contentful API. Also checkout the Contentful API docs and Contentful NPM Package docs because this plugin just wrapps those.
Installation
Node
Using npm:
npm i contentful-vue
Using yarn:
yarn add contentful-vue
Browser
Useage
Inside main.js
; Vue;
Now inside any Vue component you can this.$contentful
to access the Contentful API.
Examples
Some basic examples are shown bellow but the Contentful API docs and Contentful NPM Package docs are a lot more useful.
Get Space
this$contentful;
Get all Entries
this$contentful
With Pagination
const query = skip: 0 limit: 10; this$contentful
With Pagination and Search
const query = skip: 0 limit: 10 query: query; this$contentful
Get Entry
this$contentful