element-plus/docs/examples/button/size.vue

25 lines
856 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-button size="large" type="primary" :icon="Search">Search</el-button>
<el-button type="primary" :icon="Search">Search</el-button>
<el-button size="small" type="primary" :icon="Search">Search</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>