Input Types in Vue OTP Input component
14 Jun 20247 minutes to read
Types
This section explains the the various types of OTP (One-Time Password) input controls, explaining their default behaviors and appropriate use cases.
Number type
You can set the type property to number to use this input type as number. This is ideal for OTP input scenarios with numeric-only codes. By default type
property is number
.
<template>
<div class='wrap'>
<ejs-otpinput id="number_otp" value="1234" type="number"></ejs-otpinput>
</div>
</template>
<script setup>
import { OtpInputComponent as EjsOtpinput } from "@syncfusion/ej2-vue-inputs";
import { enableRipple } from '@syncfusion/ej2-base';
enableRipple(true);
</script>
<style>
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
.wrap {
width: 350px;
margin-top: 30px;
padding: 30px;
}
</style>
<template>
<div class='wrap'>
<ejs-otpinput id="number_otp" value="1234" type="number"></ejs-otpinput>
</div>
</template>
<script>
import { OtpInputComponent } from "@syncfusion/ej2-vue-inputs";
import { enableRipple } from '@syncfusion/ej2-base';
enableRipple(true);
export default {
name: "App",
components: { 'ejs-otpinput': OtpInputComponent }
}
</script>
<style>
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
.wrap {
width: 350px;
margin-top: 30px;
padding: 30px;
}
</style>
Text type
You can set the type property to text to use this input type as text. This is suitable when the OTP input need to include both letters and numbers.
<template>
<div class='wrap'>
<ejs-otpinput id="text_otp" value="e3c7" type="text"></ejs-otpinput>
</div>
</template>
<script setup>
import { OtpInputComponent as EjsOtpinput } from "@syncfusion/ej2-vue-inputs";
import { enableRipple } from '@syncfusion/ej2-base';
enableRipple(true);
</script>
<style>
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
.wrap {
width: 350px;
margin-top: 30px;
padding: 30px;
}
</style>
<template>
<div class='wrap'>
<ejs-otpinput id="text_otp" value="e3c7" type="text"></ejs-otpinput>
</div>
</template>
<script>
import { OtpInputComponent } from "@syncfusion/ej2-vue-inputs";
import { enableRipple } from '@syncfusion/ej2-base';
enableRipple(true);
export default {
name: "App",
components: { 'ejs-otpinput': OtpInputComponent }
}
</script>
<style>
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
.wrap {
width: 350px;
margin-top: 30px;
padding: 30px;
}
</style>
Password type
You can set the type property to password to use this input type as password in the OTP Input.
<template>
<div class='wrap'>
<ejs-otpinput id="password_otp" value="1234" type="password"></ejs-otpinput>
</div>
</template>
<script setup>
import { OtpInputComponent as EjsOtpinput } from "@syncfusion/ej2-vue-inputs";
import { enableRipple } from '@syncfusion/ej2-base';
enableRipple(true);
</script>
<style>
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
.wrap {
width: 350px;
margin-top: 30px;
padding: 30px;
}
</style>
<template>
<div class='wrap'>
<ejs-otpinput id="password_otp" value="1234" type="password"></ejs-otpinput>
</div>
</template>
<script>
import { OtpInputComponent } from "@syncfusion/ej2-vue-inputs";
import { enableRipple } from '@syncfusion/ej2-base';
enableRipple(true);
export default {
name: "App",
components: { 'ejs-otpinput': OtpInputComponent }
}
</script>
<style>
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
.wrap {
width: 350px;
margin-top: 30px;
padding: 30px;
}
</style>
Value
You can specify the value of OTP Input by using the value property.
<template>
<div class='wrap'>
<ejs-otpinput id="otp_default" value="1234"></ejs-otpinput>
</div>
</template>
<script setup>
import { OtpInputComponent as EjsOtpinput } from "@syncfusion/ej2-vue-inputs";
import { enableRipple } from '@syncfusion/ej2-base';
enableRipple(true);
</script>
<style>
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
.wrap {
width: 350px;
margin-top: 30px;
padding: 30px;
}
</style>
<template>
<div class='wrap'>
<ejs-otpinput id="otp_default" value="1234"></ejs-otpinput>
</div>
</template>
<script>
import { OtpInputComponent } from "@syncfusion/ej2-vue-inputs";
import { enableRipple } from '@syncfusion/ej2-base';
enableRipple(true);
export default {
name: "App",
components: { 'ejs-otpinput': OtpInputComponent }
}
</script>
<style>
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
.wrap {
width: 350px;
margin-top: 30px;
padding: 30px;
}
</style>