npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rard-vue-element-upload

v1.0.4

Published

A component that allows you to upload files in VueJS 2, returning the Base64 of each of them and with the appearance of Element.io

Downloads

2

Readme

rard-vue-element-upload

Este componente permite fazer o upload de arquivos no VueJS 2, retornando o Base64 de cada um deles e com a aparência do Element.io.

Uso básico

JS

import RardVueElementUpload from rard-vue-element-upload

export default {
    name: 'Example',
    components: {
        RardVueElementUpload,
    },
    data () {
        return {
            files: []
        }
    },
}

HTML

<RardVueElementUpload v-model="files" />

Propriedaes

O componente possui diversas propriedades que permitem alterar sua aparência e comportamento. Veja alguns:

|Proriedade|Valores|Padrão|Descrição| |----------|-------|------|---------| |type|'files' ou 'images'|'files'|Muda a interface do componente caso o tipo de upload seja imagens ou arquivos gerais| |no-list|true ou false|false|Se não deve exibir uma lista dos arquivos selecionados/carregados| |allow-types|Qualquer String|Todos os MimeTypes|Mimetypes de arquivos que podem ser carregados. Ignorar permitirá todos os mimetypes |max-size|Qualquer Number|0 (Sem limite)|Estabelece o tamanho máximo (em bytes) que o arquivo pode ter |max|Qualquer Integer|0|Quantidade máxima de arquivos que podem ser carregados (0 == Ilimitado) |file-button-text|Qualquer String|'Selecionar'|Altera o texto do botão de upload do componente de tipo 'file'| |show-size|true ou false|true|Se o componente de tipo 'file' deve exibir o tamanho do arquivo carregado |image-height|Qualquer String|'100px'|Altura da miniatura da imagem carregada no componente de tipo 'image' |image-width|Qualquer String|'100px'|Largura da miniatura da imagem carregada no componente de tipo 'image' |image-icon-upload-size|Qualquer String|'5rem'|Tamanho do ícone de upload no componente de tipo 'image'

Eventos

O componente também possui alguns eventos úteis:

|Evento|Descrição|Parâmetro(s)| |------|---------|------------| |invalid|É executado sempre que um arquivo inválido for selecionado|Validação que estourou o evento e objeto do arquivo inválido| |add|É executado sempre que um novo arquivo for adicionado na lista|A lista de todos os objetos da lista | |remove|É executado sempre que um arquivo for removido da lista|Array contendo todos os objetos removidos|

Demostração (Demo)

Clone, configure e execute o projeto do BitBucket:

> git clone https://[email protected]/eudiasrafael/rard-vue-element-upload.git
> cd rard-vue-element-upload
> npm install
> npm run dev