Skip to content

Instantly share code, notes, and snippets.

@adamcmoore
adamcmoore / uppy.vue
Last active July 26, 2021 07:11
Demonstration of Uppy Media Library functionality in Vue
<template>
<div>
<div v-for="(file, index) in files">
<input type="hidden" v-bind:name="'files['+index+'][id]'" :value="file.id">
<input type="hidden" v-bind:name="'files['+index+'][name]'" :value="file.name">
</div>
<div class="upper-wrapper">
<loading :active.sync="is_loading" :is-full-page="false"></loading>
<div class="uppy"></div>