![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
vue-file-selector
Advanced tools
File selector with validation that supports drag-n-drop for Vuejs.
ImageGlass
- A lightweight, versatile image viewer: https://imageglass.orgFluent Reveal Effect Js
(Fluent Design System): https://github.com/d2phap/fluent-reveal-effectFileWatcherEx
- A wrapper of C# FileSystemWatcher for Windows: https://github.com/d2phap/FileWatcherExRun the command
npm i vue-file-selector@latest
NPM package: https://www.npmjs.com/package/vue-file-selector
Github source: https://github.com/d2phap/vue-file-selector
Please see Demo project for full example.
// in main.ts
import { createApp } from 'vue';
// import FileSelector main css
import 'vue-file-selector/dist/main.css';
// import the FileSelector plugin
import FileSelector from 'vue-file-selector';
import App from './App.vue';
createApp(App)
// then use it!
.use(FileSelector)
.mount('#app');
<template>
<div>
<FileSelector
accept-extensions=".jpg,.svg"
:multiple="true"
:max-file-size="5 * 1024 * 1024"
@validated="handleFilesValidated"
@changed="handleFilesChanged">
Select image files
</FileSelector>
</div>
</template>
<script lang="ts">
import { Options, Vue } from 'vue-class-component';
import { FsValidationResult } from 'vue-file-selector/dist';
@Options({})
export default class App extends Vue {
handleFilesValidated(result: FsValidationResult, files: File[]) {
console.log('Validation result: ' + result);
},
handleFilesChanged(files: File[]) {
console.log('Selected files: ');
console.table(files);
},
}
</script>
Name | Default | Description |
---|---|---|
default | Select | Content of the Select button. |
loader | Loading... | Content of loading state. |
top | (empty) | Top section content, above the Select button. |
bottom | (empty) | Bottom section content, below the Select button. |
Name | Type | Default | Description |
---|---|---|---|
multiple | boolean | false | Allow multiple files selected. |
isLoading | boolean | false | Show or hide the loading section (slot: loader ). |
acceptExtensions | string | (empty) | List of file extensions accepted. Each extension separated by a comma (, ). E.g. accept-extensions=".zip,.rar" . |
maxFileSize | number | NaN | Maximum size in byte of every single file allowed. E.g. :max-file-size="2*1024*1024" (only the files that ≤2 MB are allowed). |
height | number | NaN | The height of droppable section. |
validateFn | FsValidateFn | () => true | A custom validation function that returns boolean value. |
@validated
Occurs after the selected files validated.
Function(result: FsValidationResult, files: File[]): void
result
: validation result,
true
if the file validation is valid, elsefalse
or Error codes (string
).files
: list of files validated.@changed
Occurs if the selected files pass validation.
Function(files: File[]): void
files
: list of files validated.List of error codes returned after validation, see FsValidationResult
.
Code | Error description |
---|---|
EXTENSION_ERROR | The selected files contain invalid extensions. |
FILE_SIZE_ERROR | The selected files size exceeded limit. |
MULTIFILES_ERROR | Multiple files selection is not allowed. |
FAQs
File selector component that supports drag-n-drop for VueJs 3
The npm package vue-file-selector receives a total of 0 weekly downloads. As such, vue-file-selector popularity was classified as not popular.
We found that vue-file-selector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.