Extension for Vue storefront that displays last photos from an Instagram account.
Configure widget in your config/local.json
"instagram": {
"token": "XXXXXX",
"channel": "@channelname",
"count": 3
}
Include component in the desired page or component
import instagramStream from 'src/extensions/instagram-feed/components/stream'
components: {
...
instagramStream
}
<instagram-stream />
Register the extension
extensionList.push(require('@vue-storefront/extension-instagram-feed/index.js'))
Et voilà!
From Bitbull with love