LianYue
LianYue
You can try to directly import `.vue` files ```js import FileUpload from "vue-upload-component/src/FileUpload.vue"; ``` If it still doesn't work, please add the `vue-upload-component` component to the whitelist so that webpack...
可以 `v-model` 可以被改变 双向绑定的 父组建拉取后 绑定就行了
```html Select Files ``` https://lian-yue.github.io/vue-upload-component/#/en/documents#options-props-input-id
没办法 ie9 没xhr 只能 在 上传 url 上加 token 或 请求的 body 上加验证字段
https://lian-yue.github.io/vue-upload-component/#/en/documents#instance-methods-replace
```js Vue.filter('formatSize', function (size) { if (size > 1024 * 1024 * 1024 * 1024) { return (size / 1024 / 1024 / 1024 / 1024).toFixed(2) + ' TB' }...
Supported Vue3 ``` npm install vue-upload-component@next --save ``` The first version 3.0, please try to be compatible
Interface parameters are basically compatible with vue2 @sergeynilov
@sergeynilov ```vue Select files Upload {{file.id}} - {{file.name}} error:{{file.error}} import {SetupContext, ref, Ref, defineComponent, watch} from "vue" import FileUpload, {VueUploadItem} from 'vue-upload-component' export default defineComponent({ components: { FileUpload, }, setup(props:...
@starkana ```css transition: width 1s ease; ```