mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 12:48:04 +08:00
ad3d998752
* feat: button add link type * fix: code lint * feat: button add link api * docs: edit word Co-authored-by: xiaochenchen <xiaochen.chen@igg.com>
49 lines
1.1 KiB
Vue
49 lines
1.1 KiB
Vue
<template>
|
|
<p>Basic text button</p>
|
|
<div class="flex justify-space-between mb-4">
|
|
<el-button
|
|
v-for="button in buttons"
|
|
:key="button.text"
|
|
:type="button.type"
|
|
text
|
|
>{{ button.text }}</el-button
|
|
>
|
|
</div>
|
|
|
|
<p>Background color always on</p>
|
|
<div class="flex justify-space-between mb-4">
|
|
<el-button
|
|
v-for="button in buttons"
|
|
:key="button.text"
|
|
:type="button.type"
|
|
text
|
|
bg
|
|
>{{ button.text }}</el-button
|
|
>
|
|
</div>
|
|
|
|
<p>Disabled text button</p>
|
|
<div class="flex justify-space-between">
|
|
<el-button
|
|
v-for="button in buttons"
|
|
:key="button.text"
|
|
:type="button.type"
|
|
text
|
|
disabled
|
|
>{{ button.text }}</el-button
|
|
>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const buttons = [
|
|
{ type: 'link', text: 'link' },
|
|
{ type: '', text: 'plain' },
|
|
{ type: 'primary', text: 'primary' },
|
|
{ type: 'success', text: 'success' },
|
|
{ type: 'info', text: 'info' },
|
|
{ type: 'warning', text: 'warning' },
|
|
{ type: 'danger', text: 'danger' },
|
|
] as const
|
|
</script>
|