mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
e97fe719c4
- Update button's type in examples per changes for button
39 lines
1008 B
Vue
39 lines
1008 B
Vue
<template>
|
|
<div>
|
|
<div style="margin-bottom: 15px">
|
|
direction:
|
|
<el-radio v-model="direction" label="horizontal">horizontal</el-radio>
|
|
<el-radio v-model="direction" label="vertical">vertical</el-radio>
|
|
</div>
|
|
<div style="margin-bottom: 15px">
|
|
fillRatio:<el-slider v-model="fillRatio" />
|
|
</div>
|
|
<el-space
|
|
fill
|
|
wrap
|
|
:fill-ratio="fillRatio"
|
|
:direction="direction"
|
|
style="width: 100%"
|
|
>
|
|
<el-card v-for="i in 5" :key="i" class="box-card">
|
|
<template #header>
|
|
<div class="card-header">
|
|
<span>Card name</span>
|
|
<el-button class="button" text>Operation button</el-button>
|
|
</div>
|
|
</template>
|
|
<div v-for="o in 4" :key="o" class="text item">
|
|
{{ 'List item ' + o }}
|
|
</div>
|
|
</el-card>
|
|
</el-space>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const direction = ref('horizontal')
|
|
const fillRatio = ref(30)
|
|
</script>
|