36 lines
648 B
Vue
36 lines
648 B
Vue
![]() |
<docs>
|
||
|
---
|
||
|
order: 3
|
||
|
title:
|
||
|
zh-CN: 不同的状态
|
||
|
en-US: other status
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
可以通过 status 的值控制二维码的状态。
|
||
|
|
||
|
## en-US
|
||
|
The status can be controlled by the value `status`.
|
||
|
</docs>
|
||
|
|
||
|
<template>
|
||
|
<a-space>
|
||
|
<div><a-qrcode value="http://www.antv.com" status="loading" /></div>
|
||
|
<div><a-qrcode value="http://www.antv.com" status="expired" @refresh="refreshChange" /></div>
|
||
|
</a-space>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from 'vue';
|
||
|
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
const refreshChange = () => alert('updated');
|
||
|
return {
|
||
|
refreshChange,
|
||
|
};
|
||
|
},
|
||
|
});
|
||
|
</script>
|