标签: vue.js
我正在尝试使用Vuejs上传图片,当我点击上传按钮时,它会浏览图像并上传。我试过下面的代码。
HTML:
<input type="file" /> <button type="button">upload</button>
JavaScript的:
new Vue({ el: '#app', data: { image: '' } );