mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
5d2daca248
- Update docs for link button. - Update vp-translation wrong usage of button. - Update doc show cases examples. - Update commit hash value for `link button`
36 lines
827 B
Vue
36 lines
827 B
Vue
<template>
|
|
<p>Basic link button</p>
|
|
<div class="flex justify-space-between mb-4 flex-wrap gap-4">
|
|
<el-button
|
|
v-for="button in buttons"
|
|
:key="button.text"
|
|
:type="button.type"
|
|
link
|
|
>{{ button.text }}</el-button
|
|
>
|
|
</div>
|
|
|
|
<p>Disabled link button</p>
|
|
<div class="flex justify-space-between flex-wrap gap-4">
|
|
<el-button
|
|
v-for="button in buttons"
|
|
:key="button.text"
|
|
:type="button.type"
|
|
link
|
|
disabled
|
|
>{{ button.text }}</el-button
|
|
>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const buttons = [
|
|
{ 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>
|