Skip to content

Commit 71247b5

Browse files
authored
fix: typo computed (vuejs#2189)
1 parent 67545c1 commit 71247b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/style-guide/rules-strongly-recommended.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ const discount = computed(
784784
() => basePrice.value * (discountPercent.value || 0)
785785
)
786786

787-
const finalPrice = compued(() => basePrice.value - discount.value)
787+
const finalPrice = computed(() => basePrice.value - discount.value)
788788
```
789789

790790
</div>

0 commit comments

Comments
 (0)