This commit is contained in:
2025-03-26 19:10:41 +08:00
parent 9463635e03
commit 3c85d9e0e7
28 changed files with 907 additions and 147 deletions

View File

@@ -0,0 +1,18 @@
<script setup>
import XLink from "./XLink.vue";
import XInput from "./XInput.vue";
const modalValue = defineModel();
</script>
<template>
<x-input v-model:model-value="modalValue" placeholder="验证码">
<template #suffix>
<x-link>发送验证码</x-link>
</template>
</x-input>
</template>
<style scoped>
</style>