mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-08-12 07:29:46 +08:00
22 lines
353 B
Vue
22 lines
353 B
Vue
<template>
|
|
<demo-section>
|
|
<basic-usage />
|
|
<validate-rules />
|
|
<field-type />
|
|
</demo-section>
|
|
</template>
|
|
|
|
<script>
|
|
import BasicUsage from './BasicUsage';
|
|
import ValidateRules from './ValidateRules';
|
|
import FieldType from './FieldType';
|
|
|
|
export default {
|
|
components: {
|
|
BasicUsage,
|
|
FieldType,
|
|
ValidateRules,
|
|
},
|
|
};
|
|
</script>
|