mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 18:11:48 +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>
28 lines
1.0 KiB
Vue
28 lines
1.0 KiB
Vue
<template>
|
|
<div class="flex flex-wrap items-center mb-4">
|
|
<el-button size="large">Large</el-button>
|
|
<el-button>Default</el-button>
|
|
<el-button size="small">Small</el-button>
|
|
<el-button size="large" :icon="Search">Search</el-button>
|
|
<el-button :icon="Search">Search</el-button>
|
|
<el-button size="small" :icon="Search">Search</el-button>
|
|
</div>
|
|
<div class="flex flex-wrap items-center mb-4">
|
|
<el-button size="large" round>Large</el-button>
|
|
<el-button round>Default</el-button>
|
|
<el-button size="small" round>Small</el-button>
|
|
<el-button size="large" :icon="Search" round>Search</el-button>
|
|
<el-button :icon="Search" round>Search</el-button>
|
|
<el-button size="small" :icon="Search" round>Search</el-button>
|
|
</div>
|
|
<div class="flex flex-wrap items-center">
|
|
<el-button :icon="Search" size="large" circle />
|
|
<el-button :icon="Search" circle />
|
|
<el-button :icon="Search" size="small" circle />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Search } from '@element-plus/icons-vue'
|
|
</script>
|