Skip to content

Instantly share code, notes, and snippets.

@PKTseng
Created August 11, 2020 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PKTseng/35ded6488a19f4fcb1883e355081a9e5 to your computer and use it in GitHub Desktop.
Save PKTseng/35ded6488a19f4fcb1883e355081a9e5 to your computer and use it in GitHub Desktop.
圖片上傳
<div id="app">
<input type="file" @change="selectFile">
</div>
new Vue({
el:"#app",
methods:{
selectFile(e){
const file = e.target.files.item(0);
console.log(file);
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment