element-plus/docs/examples/button/link.vue
JeremyWuuuuu 5d2daca248
docs(components): [button] link button (#7694)
- Update docs for link button.
- Update vp-translation wrong usage of button.
- Update doc show cases examples.
- Update commit hash value for `link button`
2022-05-14 12:58:09 +08:00

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>