bug修复

This commit is contained in:
2024-04-24 21:53:31 +08:00
parent bfc04c54aa
commit bb9a32d296
9 changed files with 158 additions and 22 deletions

View File

@@ -7,6 +7,6 @@ const url = ref<string>('');
onLoad((params: any) => {
if(params.url)
url.value = params.url;
url.value = decodeURIComponent(params.url);
});
</script>