Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 787 Bytes

README.md

File metadata and controls

50 lines (36 loc) · 787 Bytes

vue3-uploader

一个基于 simple-uploader.js 的 Vue 上传组件

Demo效果

Image text

uploader.vue

<template>
    <custom-uploader> </custom-uploader>
</template>

<script>
    import customUploader from '@/components/uploader'
    export default {
        data(){
            return {


            }
        },
        components: {
            customUploader
        },
        mounted(){

        },
        methods   : {

        }
    }
</script>

Development

# install dependencies
npm install
# serve with hot reload at localhost:3001
npm run serve
# build for production with minification
npm run build