
Security Fundamentals
Turtles, Clams, and Cyber Threat Actors: Shell Usage
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
vue-file-chooser
Advanced tools
a helper for choosing a file in vue application.
with npm:
npm install vue-file-chooser
with yarn:
yarn add vue-file-chooser
with pnpm:
pnpm add vue-file-chooser
with drag and drop
<script setup lang="ts">
import { ArrowUpTrayIcon, XMarkIcon } from '@heroicons/vue/20/solid'
import { FileChooser } from 'vue-file-chooser'
import AlertComponent from './AlertComponent.vue'
import ButtonComponent from './ButtonComponent.vue'
const fileChooserBuilder = new FileChooser()
const onCancelImageClick = (e: Event) => {
e.preventDefault()
e.stopImmediatePropagation()
fileChooserBuilder.destroy()
}
/**
* Define expose here, so the file and imageDataUrl can be access via instance
*/
defineExpose({
file: fileChooserBuilder.file,
imageDataUrl: fileChooserBuilder.imageDataUrl
})
</script>
<template>
<div>
<AlertComponent v-if="fileChooserBuilder.error.value">{{
fileChooserBuilder.error.value
}}</AlertComponent>
<label
@dragover="(event) => event.preventDefault()"
@dragleave="(event) => fileChooserBuilder.onDrag(event, false)"
@dragenter="(event) => fileChooserBuilder.onDrag(event, true)"
@drop="(event) => fileChooserBuilder.onChange(event, true)"
for="file-upload"
class="relative cursor-pointer w-96 h-56 border border-dashed border-blue-400 p-20 flex flex-col justify-center items-center gap-2 hover:bg-blue-50 duration-150 transition rounded-2xl"
:class="{ 'bg-blue-50': fileChooserBuilder.isDragging.value }"
>
<input
@change="(event) => fileChooserBuilder.onChange(event, false)"
type="file"
name="file-upload"
id="file-upload"
class="hidden"
/>
<template v-if="!fileChooserBuilder.imageDataUrl.value">
<ArrowUpTrayIcon class="w-5 h-5" />
<span class="text-blue-500 text-sm"
>Browse <span class="text-black/50">or</span> Drag & Drop</span
>
</template>
<template v-else>
<div class="w-32 h-32 rounded-full overflow-hidden"></div>
<img
:src="fileChooserBuilder.imageDataUrl.value"
class="w-32 h-32 rounded-full object-cover object-center"
/>
</template>
<span
v-if="!!fileChooserBuilder.imageDataUrl.value"
class="absolute top-2 right-2"
>
<ButtonComponent intent="transparent" @click="onCancelImageClick">
<XMarkIcon class="w-5 h-5 fill-black" />
</ButtonComponent>
</span>
</label>
</div>
</template>
without drag and drop
<script setup lang="ts">
import { ArrowUpTrayIcon, XMarkIcon } from '@heroicons/vue/20/solid'
import { FileChooser } from 'vue-file-chooser'
import AlertComponent from './AlertComponent.vue'
import ButtonComponent from './ButtonComponent.vue'
const fileChooserBuilder = new FileChooser()
const onCancelImageClick = (e: Event) => {
e.preventDefault()
e.stopImmediatePropagation()
fileChooserBuilder.destroy()
}
/**
* Define expose here, so the file and imageDataUrl can be access via instance
*/
defineExpose({
file: fileChooserBuilder.file,
imageDataUrl: fileChooserBuilder.imageDataUrl
})
</script>
<template>
<div>
<AlertComponent v-if="fileChooserBuilder.error.value">{{
fileChooserBuilder.error.value
}}</AlertComponent>
<label
for="file-upload"
class="relative cursor-pointer w-96 h-56 border border-dashed border-blue-400 p-20 flex flex-col justify-center items-center gap-2 hover:bg-blue-50 duration-150 transition rounded-2xl"
:class="{ 'bg-blue-50': fileChooserBuilder.isDragging.value }"
>
<input
@change="(event) => fileChooserBuilder.onChange(event, false)"
type="file"
name="file-upload"
id="file-upload"
class="hidden"
/>
<template v-if="!fileChooserBuilder.imageDataUrl.value">
<ArrowUpTrayIcon class="w-5 h-5" />
<span class="text-blue-500 text-sm"
>Browse <span class="text-black/50">or</span> Drag & Drop</span
>
</template>
<template v-else>
<div class="w-32 h-32 rounded-full overflow-hidden"></div>
<img
:src="fileChooserBuilder.imageDataUrl.value"
class="w-32 h-32 rounded-full object-cover object-center"
/>
</template>
<span
v-if="!!fileChooserBuilder.imageDataUrl.value"
class="absolute top-2 right-2"
>
<ButtonComponent intent="transparent" @click="onCancelImageClick">
<XMarkIcon class="w-5 h-5 fill-black" />
</ButtonComponent>
</span>
</label>
</div>
</template>
FAQs
a helper for choosing a file in vue application.
The npm package vue-file-chooser receives a total of 0 weekly downloads. As such, vue-file-chooser popularity was classified as not popular.
We found that vue-file-chooser 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 Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.