Select

Базовый cелект, в основе текстовое поле. Basic select component, based on a text field.

Import Permalink to "Import"

js
import ProximaSelect from 'proxima-vue/field/select';

Playground Permalink to "Playground"

Props
Label position
View
Round
Shadow
Actions visibility
js
import { ref } from 'vue';
import ProximaSelect from 'proxima-vue/field/select';

const value = ref('');
html
<ProximaSelect
  label="Select item"
  placeholder="Select value"
  :options="['one', 'two', 'three']"
  v-model="value"
/>

Extends Permalink to "Extends"

Данный компонент основан на текстовом поле и поддерживает его пропсы, события, слоты, БЭМ модификаторы и кастомные свойства. This component is based on a text field and supports its props, events, slots, BEM modifiers and custom properties.

View source on GitHub