Skip to content

Instantly share code, notes, and snippets.

View nebaughman's full-sized avatar
📜
Reading Scrolls of Wisdom

Nathan nebaughman

📜
Reading Scrolls of Wisdom
View GitHub Profile
@nebaughman
nebaughman / BlobImage.vue
Created November 9, 2019 11:09
Load image with ajax (axios) as blob data in Vue component
<template>
<img ref="image" :src="blobUrl" @load="loaded"/>
</template>
<script>
import axios from "axios"
/**
* Load an image url as a blob
*/