Skip to content

Instantly share code, notes, and snippets.

View c0depanda's full-sized avatar

Nosa Obaseki c0depanda

View GitHub Profile
@c0depanda
c0depanda / ref.vue
Created June 19, 2017 09:24
Method for creating a unique reference number
<template>
<div>
<p>Reference Number: {{referenceNumber}}
</div>
</template>
<script>
export default {
data: function () {
return {
@c0depanda
c0depanda / imageUpload.vue
Last active February 7, 2017 22:11
Uploading Data to an api endpoint using Vue Resource and FormData Web Api
<template>
<div>
<input type="file" @change="avatarChange" class="uploadIcon">
</div>
</template>
<script>
export default {