mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
3f72ec5818
* test(ssr): add ssr testing cases - Add cases for backtop, badge, breadcrumb, button, calendar - Fix a issue which caused backtop not SSR renderable * Update card, carousel cascader test cases * Add more cases
28 lines
1.0 KiB
Vue
28 lines
1.0 KiB
Vue
<template>
|
|
<el-row style="margin-block-end: 8px">
|
|
<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>
|
|
</el-row>
|
|
<el-row style="margin-block-end: 8px">
|
|
<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>
|
|
</el-row>
|
|
<el-row style="margin-block-end: 8px">
|
|
<el-button :icon="Search" size="large" circle />
|
|
<el-button :icon="Search" circle />
|
|
<el-button :icon="Search" size="small" circle />
|
|
</el-row>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Search } from '@element-plus/icons-vue'
|
|
</script>
|