mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 18:11:48 +08:00

* fix(style): adjust button size & demo spacing * fix(style): adjust input padding & with prefix/suffix * fix(style): adjust button padding horizontal * fix(style): adjust form margin & font-size * refactor(docs): use setup simplify form examples
22 lines
638 B
Vue
22 lines
638 B
Vue
<template>
|
|
<el-row>
|
|
<el-button size="large">Large</el-button>
|
|
<el-button>Default</el-button>
|
|
<el-button size="small">Small</el-button>
|
|
</el-row>
|
|
<el-row class="my-4">
|
|
<el-button size="large" round>Large</el-button>
|
|
<el-button round>Default</el-button>
|
|
<el-button size="small" round>Small</el-button>
|
|
</el-row>
|
|
<el-row>
|
|
<el-button :icon="Search" size="large" circle></el-button>
|
|
<el-button :icon="Search" circle></el-button>
|
|
<el-button :icon="Search" size="small" circle></el-button>
|
|
</el-row>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Search } from '@element-plus/icons-vue'
|
|
</script>
|