fix: fix copying errors of icon demo (#11350)

This commit is contained in:
Gavin 2022-12-03 19:41:20 +08:00 committed by GitHub
parent 67a3a507ac
commit 7919ea2b8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,10 +126,10 @@ const copy = (icon: string, option: Record<string, unknown> = {}) => {
<demo-block :title="t('color')">
<van-row>
<van-col span="6" @click="copy(demoIcon, { color: '#1989fa' })">
<van-col span="6" @click="copy('cart-o', { color: '#1989fa' })">
<van-icon name="cart-o" color="#1989fa" />
</van-col>
<van-col span="6" @click="copy(demoIcon, { color: '#ee0a24' })">
<van-col span="6" @click="copy('fire-o', { color: '#ee0a24' })">
<van-icon name="fire-o" color="#ee0a24" />
</van-col>
</van-row>