javascript - How to use vue element-ui upload file component
黄舟
黄舟 2017-06-26 10:52:20
0
1
1263

Please tell me how to use the upload component of element-ui. It is best to have a demo to take a look at. I really don’t understand the official website! Thank you

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(1)
ringa_lee
<el-upload
  class="upload-demo"
  action="//jsonplaceholder.typicode.com/posts/"
  :on-preview="handlePreview"
  :on-remove="handleRemove"
  :file-list="fileList">
  <el-button size="small" type="primary">点击上传</el-button>
  <p slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过500kb</p>
</el-upload>
<script>
  export default {
    data() {
      return {
        fileList: [{name: 'food.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}, {name: 'food2.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}]
      };
    },
    methods: {
      handleRemove(file, fileList) {
        console.log(file, fileList);
      },
      handlePreview(file) {
        console.log(file);
      }
    }
  }
</script>

Use the code from the official website directly, and then use the background interface to accept and process files. Will it be ok soon?

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!