Fix xls upload

This commit is contained in:
Vladimir 2026-07-12 20:18:18 +03:00
parent a631536365
commit c6bb480e79
2 changed files with 1 additions and 44 deletions

View File

@ -1,43 +0,0 @@
<script setup>
import { ref } from 'vue'
defineProps({
msg: String,
})
const count = ref(0)
</script>
<template>
<h1>{{ msg }}</h1>
<div class="card">
<button type="button" @click="count++">count is {{ count }}</button>
<p>
Edit
<code>components/HelloWorld.vue</code> to test HMR
</p>
</div>
<p>
Check out
<a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
>create-vue</a
>, the official Vue + Vite starter
</p>
<p>
Learn more about IDE Support for Vue in the
<a
href="https://vuejs.org/guide/scaling-up/tooling.html#ide-support"
target="_blank"
>Vue Docs Scaling up Guide</a
>.
</p>
<p class="read-the-docs">Click on the Vite and Vue logos to learn more</p>
</template>
<style scoped>
.read-the-docs {
color: #888;
}
</style>

View File

@ -24,7 +24,7 @@
customUpload
:auto="false"
:multiple="false"
accept=".pdf,.doc,.docx,.jpg,.png"
accept=".pdf,.doc,.docx,.xls,.xlsx,.jpg,.png"
@select="onFileSelect"
@uploader="saveDealDoc"
@clear="selectedFile = null; thumbnailPreview = null"