mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 20:58:22 +08:00
16 lines
446 B
Vue
16 lines
446 B
Vue
<script lang="ts" setup>
|
|
import { isDark } from '~/composables/dark'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex">
|
|
<el-button color="#626aef" :dark="isDark">Default</el-button>
|
|
<el-button color="#626aef" :dark="isDark" plain>Plain</el-button>
|
|
|
|
<el-button color="#626aef" :dark="isDark" disabled>Disabled</el-button>
|
|
<el-button color="#626aef" :dark="isDark" disabled plain
|
|
>Disabled Plain</el-button
|
|
>
|
|
</div>
|
|
</template>
|