Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

docs: Add missing ' at line 80 #410

Merged
merged 2 commits into from
Mar 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/pages/image.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Below is the correct way to `require` relative assets for the `CImage` and `CAva
<c-image src="@/assets/path-to-img.jpg" />

<!-- ✅ Correct -->
<c-image :src="require('@/assets/path-to-img.jpg)" />
<c-image :src="require('@/assets/path-to-img.jpg')" />
```

## Fallback support
Expand Down