This commit is contained in:
yuping
2022-12-12 20:09:43 +08:00
parent fd6f11acde
commit 3dcb6c5c36
3 changed files with 26 additions and 39 deletions

View File

@@ -14,9 +14,12 @@ import zip from '@/assets/image/file/zip.png'
import book from '@/assets/image/file/book.png'
import {defineProps, ref} from "vue";
const {modelValue = [],style} = defineProps({
const {modelValue = [], style} = defineProps({
modelValue: String,
style: Object
style: {
type: Object,
default: {}
}
})
const filePath = ref(modelValue)
</script>