mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
12 lines
248 B
Vue
12 lines
248 B
Vue
<script setup lang="ts">
|
|
import BasicUsage from './BasicUsage.vue';
|
|
import ValidateRules from './ValidateRules.vue';
|
|
import FieldType from './FieldType.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<basic-usage />
|
|
<validate-rules />
|
|
<field-type />
|
|
</template>
|