contentful-vue
Version:
Contentful Plugin for Vue
17 lines (12 loc) • 308 B
JavaScript
import * as Contentful from 'contentful';
let client = null;
const ContentfulVue = {
install(Vue, options) {
client = Contentful.createClient({
space: options.space,
accessToken: options.accessToken,
});
Vue.prototype.$contentful = client;
},
};
export default ContentfulVue;