primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue)
24 lines (22 loc) • 631 B
TypeScript
import Vue from 'vue';
declare class Password extends Vue {
value?: string;
promptLabel?: string;
mediumRegex?: string;
strongRegex?: string;
weakLabel?: string;
mediumLabel?: string;
strongLabel?: string;
feedback?: boolean;
appendTo?: string;
toggleMask?: boolean;
inputStyle?: any;
inputClass?: string;
hideIcon?: string;
showIcon?: string;
$emit(eventName: 'input', value: any): this;
$emit(eventName: 'focus', event: Event): this;
$emit(eventName: 'blur', event: Event): this;
$emit(eventName: 'keydown', event: Event): this;
}
export default Password;