diff --git a/src/components/ASCII/ASCII.vue b/src/components/ASCII/ASCII.vue
index 3349f43..de39eff 100644
--- a/src/components/ASCII/ASCII.vue
+++ b/src/components/ASCII/ASCII.vue
@@ -1,7 +1,7 @@
diff --git a/src/components/Example/Example.vue b/src/components/Example/Example.vue
index c7f31e3..bfc22de 100644
--- a/src/components/Example/Example.vue
+++ b/src/components/Example/Example.vue
@@ -1,15 +1,15 @@
diff --git a/src/components/Qrcode/Qrcode.vue b/src/components/Qrcode/Qrcode.vue
index 2407b38..79f5475 100644
--- a/src/components/Qrcode/Qrcode.vue
+++ b/src/components/Qrcode/Qrcode.vue
@@ -12,7 +12,7 @@ const info = reactive({
size: '200',
sizeSelect: '',
margin: 1,
- fileList: [],
+ fileList: [],
fileUrl: '',
preColor: '#000',
bgColor: '#fff',
@@ -37,7 +37,7 @@ const setQRSize = () => {
}
const handleChange = (file: UploadFile) => {
- info.fileList.push(file.url)
+ info.fileList.push(file.url as string)
info.fileUrl = info.fileList[0] ?? ''
}
@@ -140,7 +140,7 @@ const gen = () => {
生成二维码
-