docs: corrects variable name used in comment (#25238)

This commit is contained in:
Flowern 2024-01-17 00:17:46 +01:00 committed by GitHub
parent adb91ba18c
commit 4145e1b3e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -134,8 +134,8 @@ const { data: discounts, pending } = await useAsyncData('cart-discount', async (
return { coupons, offers }
})
// data.value.coupons
// data.value.offers
// discounts.value.coupons
// discounts.value.offers
</script>
```