28 lines
657 B
Vue
28 lines
657 B
Vue
<docs>
|
||
---
|
||
order: 3
|
||
title:
|
||
zh-CN: ไธๅ็็ถๆ
|
||
en-US: other status
|
||
---
|
||
|
||
## zh-CN
|
||
|
||
ๅฏไปฅ้่ฟ status ็ๅผๆงๅถไบ็ปด็ ็็ถๆ๏ผๆไพไบ `active`ใ`expired`ใ`loading`ใ`scanned` ๅไธชๅผใ
|
||
|
||
## en-US
|
||
The status can be controlled by the value `status`, four values โโof `active`, `expired`, `loading`, `scanned` are provided.
|
||
</docs>
|
||
|
||
<template>
|
||
<a-space>
|
||
<a-qrcode value="http://www.antdv.com" status="loading" />
|
||
<a-qrcode
|
||
value="http://www.antdv.com"
|
||
status="expired"
|
||
@refresh="() => console.log('refresh')"
|
||
/>
|
||
<a-qrcode value="http://www.antdv.com" status="scanned" />
|
||
</a-space>
|
||
</template>
|