This commit is contained in:
Jason 2022-09-16 10:25:04 +08:00
parent ee2b143aee
commit aeb6a7b47b
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import { ref } from 'vue'
const url = ref('')
onLoad((options) => {
url.value = options.url!
url.value = decodeURIComponent(options.url!)
})
</script>