mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-15 03:06:25 +08:00

* docs: modify layout style * docs: modify nav padding * docs: update style * feat: update * docs: upadte * docs: update * docs: modify layout style * docs: update style * feat: update * docs: upadte * docs: update * docs: update * docs: update * docs: remove empty script * docs: update --------- Co-authored-by: kooriookami <bingshuanglingluo@163.com> Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
74 lines
1.5 KiB
Vue
74 lines
1.5 KiB
Vue
<template>
|
|
<div class="flex gap-4 mb-4 items-center">
|
|
<el-input
|
|
v-model="input1"
|
|
style="width: 240px"
|
|
size="large"
|
|
placeholder="Please Input"
|
|
/>
|
|
<el-input
|
|
v-model="input2"
|
|
style="width: 240px"
|
|
placeholder="Please Input"
|
|
/>
|
|
<el-input
|
|
v-model="input3"
|
|
style="width: 240px"
|
|
size="small"
|
|
placeholder="Please Input"
|
|
/>
|
|
</div>
|
|
<div class="flex gap-4 mb-4 items-center">
|
|
<el-input
|
|
v-model="input1"
|
|
style="width: 240px"
|
|
size="large"
|
|
placeholder="Please Input"
|
|
:suffix-icon="Search"
|
|
/>
|
|
<el-input
|
|
v-model="input2"
|
|
style="width: 240px"
|
|
placeholder="Please Input"
|
|
:suffix-icon="Search"
|
|
/>
|
|
<el-input
|
|
v-model="input3"
|
|
style="width: 240px"
|
|
size="small"
|
|
placeholder="Please Input"
|
|
:suffix-icon="Search"
|
|
/>
|
|
</div>
|
|
<div class="flex gap-4 items-center">
|
|
<el-input
|
|
v-model="input1"
|
|
style="width: 240px"
|
|
size="large"
|
|
placeholder="Please Input"
|
|
:prefix-icon="Search"
|
|
/>
|
|
<el-input
|
|
v-model="input2"
|
|
style="width: 240px"
|
|
placeholder="Please Input"
|
|
:prefix-icon="Search"
|
|
/>
|
|
<el-input
|
|
v-model="input3"
|
|
style="width: 240px"
|
|
size="small"
|
|
placeholder="Please Input"
|
|
:prefix-icon="Search"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import { Search } from '@element-plus/icons-vue'
|
|
const input1 = ref('')
|
|
const input2 = ref('')
|
|
const input3 = ref('')
|
|
</script>
|