30 lines
334 B
Vue
30 lines
334 B
Vue
![]() |
<docs>
|
||
|
---
|
||
|
order: 0
|
||
|
title:
|
||
|
zh-CN: 基本使用
|
||
|
en-US: Base
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
基本用法。
|
||
|
|
||
|
## en-US
|
||
|
Basic Usage.
|
||
|
</docs>
|
||
|
|
||
|
<template>
|
||
|
<a-qrcode value="https://www.antdv.com/" />
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from 'vue';
|
||
|
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
return {};
|
||
|
},
|
||
|
});
|
||
|
</script>
|