A reusable directive for Vue.js that loads an image requiring authentication and includes it as data in-line in your web pages.
Contrary to other HTTP requests, browsers don't send common headers such as
Authorization
when retrieving an image specified in a <img>
tag.
This Vue.js directive overcomes this limitation by providing a way to load your
images as any other resources and then embedding them into your web pages using
the data:image/FILETYPE;base64
URI scheme.
- vue: ^2.0.0
- axios: >= 0.5.0
From npm:
$ npm install vue-auth-image --save
From CDN:
<script src="https://cdn.jsdelivr.net/npm/[email protected]/vue-auth-image.js"></script>
<!-- OR -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/vue-auth-image.min.js"></script>
A directive that requests an image URI asynchronously and embed it into your
<img>
tag using the data URI scheme.
import Vue from 'vue';
import VueAuthImage from 'vue-auth-image';
// register vue-auth-image directive
Vue.use(VueAuthImage);
// set Authorization header used by axios
var authHeader = 'Bearer ' + localStorage.getItem('id_token');
axios.defaults.headers.common['Authorization'] = authHeader;
Once the directive is registered, you can use it in your Vue templates.
<template>
<div>
<img v-auth-img="https://api.app.com/images/authenticatedImg.png">
</div>
</template>
See /example
for a demo. To build it, run npm install && npm run build
.