-
Notifications
You must be signed in to change notification settings - Fork 1
select
Raymond edited this page Feb 16, 2023
·
1 revision
<FormKit type="form" value="data">
<FormKit type="el-select" label="select" name="input1" :options="cities">
</FormKit>
<template>
<FormKit type="form" value="data">
<FormKit type="el-select" label="select (Custom template)" name="input1" :options="cities">
<template #option="{ item }">
<span style="float: left">{{ item.label }}</span>
<span style="
float: right;
color: var(--el-text-color-secondary);
font-size: 13px;
">{{ item.value }}
</span>
</template>
</FormKit>
</FormKit>
<template>