我在 Vue 项目中使用 Bootstrap-Vue 组件,并将 Accept 属性设置为“image/*”。它与浏览按钮配合得很好,但我仍然可以将所有类型的文件拖放到文件表单中并且它接受它。这是一个错误还是我错过了什么?
<b-form-file
accept="image/*"
v-model="file"
:state="null"
placeholder="Choose a file or drop it here..."
drop-placeholder="Drop file here..."
></b-form-file>
Run Code Online (Sandbox Code Playgroud)