19 lines
356 B
Vue
19 lines
356 B
Vue
<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>
|