File "select.php"

Full path: /home/dora/public_html/wp-content/plugins/jet-elements/includes/modules/vue-ui/components/select.php
File size: 696 bytes
MIME-type: --
Charset: utf-8

<cx-vui-component-wrapper
	:elementId="currentId"
	:label="label"
	:description="description"
	:wrapper-css="wrapperCss"
	:preventWrap="preventWrap"
	v-if="isVisible()"
>
	<select
		:id="currentId"
		:placeholder="placeholder"
		:disabled="disabled"
		:readonly="readonly"
		:name="name"
		:multiple="multiple"
		v-model="currentValue"
		:class="controlClasses()"
		@focus="handleFocus"
		@blur="handleBlur"
		@change="handleInput"
	>
		<option
			v-if="placeholder"
			value=""
			disabled
		>{{ placeholder }}</option>
		<option
			v-for="option in options"
			:value="option.value"
			:selected="isOptionSelected( option )"
		>{{ option.label }}</option>
	</select>
</cx-vui-component-wrapper>