0👍
can you check this laracast solution
...
data() {
return {
postFormData: new FormData(),
};
},
methods: {
onFileChange(event) {
let files = e.target.files;
this.postFormData.append('images[]',files[0]);
this.createFile(files[0]);
},
...
- [Vuejs]-Trying to create an embed able Vue Component bundled with Laravel Mix
- [Vuejs]-Using imported sass file with render functions in vue.js
Source:stackexchange.com