We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need to custom label-idle property so I can show to user how much file that they can apply..
label-idle
expected result: variable printed at label-idle property
what I get instead: variable printed as string at label-idle property
this is my source:
<script> import vueFilePond from 'vue-filepond'; import 'filepond/dist/filepond.min.css'; // Import image preview plugin styles import FilePondPluginImagePreview from "filepond-plugin-image-preview"; import "filepond-plugin-image-preview/dist/filepond-plugin-image-preview.min.css"; // Import image preview and file type validation plugins import FilePondPluginFileValidateType from "filepond-plugin-file-validate-type"; const FilePond = vueFilePond( FilePondPluginFileValidateType, FilePondPluginImagePreview ); export default { components: { FilePond }, data() { return { maxFiles: 3, files: [], } }, methods: { handleFilesUpload(files) { const vm = this; this.files = files.map(files => files.file); vm.$emit('handleFiles', vm.files); }, }, }; </script> <template> <FilePond name="files" ref="files" class-name="class-pond" label-idle='Letakkan file disini, maksimal {{maxFiles}} file' allow-multiple="true" instant-upload="false" :maxFiles="maxFiles" accepted-file-types="image/jpeg, image/png" v-bind:files="files" v-on:updatefiles="handleFilesUpload" /> </template>
- Device: Thinkpad Laptop - OS: Fedora 38 - Broser: Firefox ESR 115.6.0 - Vue version: Vue 3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Have you updated Vue FilePond, FilePond, and all plugins?
Describe the bug
I need to custom
label-idle
property so I can show to user how much file that they can apply..expected result:
variable printed at
label-idle
propertywhat I get instead:
variable printed as string at
label-idle
propertyReproduction
this is my source:
Environment
The text was updated successfully, but these errors were encountered: