2023-05-24 10:28:20 +00:00
|
|
|
<script>
|
|
|
|
import BaseComponent from 'primevue/basecomponent';
|
2023-10-02 10:46:09 +00:00
|
|
|
import InputMaskStyle from 'primevue/inputmask/style';
|
2023-05-24 10:28:20 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'BaseInputMask',
|
|
|
|
extends: BaseComponent,
|
|
|
|
props: {
|
|
|
|
modelValue: null,
|
|
|
|
slotChar: {
|
|
|
|
type: String,
|
|
|
|
default: '_'
|
|
|
|
},
|
|
|
|
mask: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
autoClear: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
unmask: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
readonly: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
2023-10-02 10:46:09 +00:00
|
|
|
style: InputMaskStyle
|
2023-05-24 10:28:20 +00:00
|
|
|
};
|
|
|
|
</script>
|