A Vue.js wrapper component for file uploading via button. (Vuetify friendly)
npm i v-fileInclude the script file, then install the component with Vue.use(VFile); e.g.:
<script type="text/javascript" src="node_modules/vuejs/dist/vue.min.js"></script>
<script type="text/javascript" src="node_modules/v-file/dist/v-file.min.js"></script>
<script type="text/javascript">
  Vue.use(VFile);
</script>import VFile from '@outluch/v-file'
export default {
  components: {
    'v-file': VFile,
  },
}Once installed, it can be used in a template as simply as:
Simple Upload button
<v-file @change="onChange">
  <v-btn>Upload</v-btn>
</v-file>Button with icon
<v-file>
  <v-btn icon>
    <v-icon>cloud_upload</v-icon>
  </v-btn>
</v-file>You can use the following props
| Name | Description | Type | Default | 
|---|---|---|---|
| accept | HTML input accept attribute | String | * | 
| name | applies HTML name attribute | String | file | 
| multiple | multiple files selection | Boolean | false |