Password
Поле для ввода пароля, в основе текстовое поле. Password input based on a text field.
Import Permalink to "Import"
js
import ProximaPassword from 'proxima-vue/field/password';
Playground Permalink to "Playground"
js
import { ref } from 'vue';
import ProximaPassword from 'proxima-vue/field/password';
const value = ref('');
html
<ProximaPassword
label="Password"
placeholder="Enter password"
v-model="value"
/>
Eye Permalink to "Eye"
Вы можете добавить переключатель типа для показа пароля пользователю: You can add a switch type to reveal the password to the user:
html
<ProximaPassword
has-eye-button
/>
CSS Permalink to "CSS"
css
--field-action-eye-transform: scale(1.35);
Extends Permalink to "Extends"
Данный компонент основан на текстовом поле и поддерживает его пропсы, события, слоты, БЭМ модификаторы и кастомные свойства. This component is based on a text field and supports its props, events, slots, BEM modifiers and custom properties.