You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
268 B

  1. import Vue from 'vue';
  2. const vm = new Vue({
  3. el: '#mail-app',
  4. delimiters: ['[[', ']]'],
  5. data: {
  6. file: '',
  7. },
  8. methods: {
  9. handleFileUpload() {
  10. console.log(this.$refs.file.files);
  11. this.file = this.$refs.file.files[0].name;
  12. },
  13. },
  14. });