element-ui使用中碰到的问题

 

<template>
    <div>
        <el-button @click="clearFiles">重新上传</el-button>
        <el-upload ref="my-upload">
            <el-button type="primary">点击上传</el-button>
        </el-upload>
    </div>
</template>
<script>
    export default {
        data(){
            return {
                
            }
        },
        methods: {
            clearFiles () {
                this.$refs['my-upload'].clearFiles();
            }
        }
    };
</script>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-05
  • 2021-09-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-24
  • 2022-12-23
  • 2021-08-23
  • 2022-12-23
  • 2021-09-11
相关资源
相似解决方案