Skip to content

Commit

Permalink
added demo files
Browse files Browse the repository at this point in the history
  • Loading branch information
www committed Jul 24, 2017
1 parent b83bf8a commit a7b6af7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
15 changes: 15 additions & 0 deletions demo/App.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<template>
<div id="app">
<multiple-file-uploader postURL="" successMessagePath="" errorMessagePath=""></multiple-file-uploader>
</div>
</template>

<script>
import MultipleFileUploader from './../src/MultipleFileUploader.vue'
export default {
components: {
MultipleFileUploader
}
}
</script>
7 changes: 7 additions & 0 deletions demo/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import Vue from 'vue'
import App from './App.vue'

new Vue({
el: '#app',
render: h => h(App)
})

0 comments on commit a7b6af7

Please sign in to comment.