-
-
Notifications
You must be signed in to change notification settings - Fork 99
Open
Labels
Description
Environment
"@vueform/vueform": "^1.12.7",
Reproduction
<script setup lang="ts">
import { ref } from 'vue';
const formSchema = ref({
phone: {
type: 'phone',
label: 'Phone number',
allowIncomplete: true,
unmask: true,
info: 'Customer phone number',
placeholder: '+230 5999999',
floating: false,
size: 'sm',
}
}
</script>
<template>
<Vueform :schema="formSchema" />
</template>
Describe the bug
After installing plugin-mask
, toggling unmask
/ allowIncomplete
on a phone input doesn't do anything.
Additional context
No response