You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
418 B
29 lines
418 B
1 year ago
|
<docs>
|
||
|
---
|
||
|
order: 0
|
||
|
title:
|
||
|
zh-CN: 基本使用
|
||
|
en-US: Base
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
基本用法。
|
||
|
|
||
|
## en-US
|
||
|
Basic Usage.
|
||
|
</docs>
|
||
|
|
||
|
<template>
|
||
|
<a-space direction="vertical" align="center">
|
||
|
<a-qrcode :value="text" />
|
||
|
<a-input v-model:value="text" placeholder="-" :maxlength="60" />
|
||
|
</a-space>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { ref } from 'vue';
|
||
|
|
||
|
const text = ref('https://www.antdv.com/');
|
||
|
</script>
|