Skip to content

Commit

Permalink
fix: increase image quality
Browse files Browse the repository at this point in the history
  • Loading branch information
qin-guan committed Jul 19, 2023
1 parent b232674 commit 3c0d22b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/dashboard/surveys/[id]/print.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ const data = computed(() => {
})
const qrcode = useQRCode(data.value, {
type: 'image/webp',
width: 500,
type: 'image/png',
width: 1000,
})
const { data: survey } = await $client.survey.get.useQuery({ id: route.params.id as string })
Expand Down

0 comments on commit 3c0d22b

Please sign in to comment.