This commit is contained in:
2025-10-17 10:31:13 +08:00
commit e6e86f2ce0
1043 changed files with 1031839 additions and 0 deletions

16
src/views/test/index.vue Normal file
View File

@@ -0,0 +1,16 @@
<template>
<avue-upload v-model="urls" list-type="picture-img"></avue-upload>
</template>
<script setup>
import { ref } from 'vue'
const action = 'https://api.avuejs.com/imgupload'
const propsHttp = {
url: 'url',
name: 'name',
res: 'data'
}
const urls = ref([])
//设置为空字符串控件都不显示
// const urls = ref('')
</script>