Skip to content

Instantly share code, notes, and snippets.

View arbaev's full-sized avatar

Timur Arbaev arbaev

  • Izmir, Turkey
  • 21:51 (UTC +03:00)
  • LinkedIn in/arbaev
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
*/