未来鸟

搜索组件

搜索组件库和组件

Button 按钮

Element Plus 按钮组件展示(Vue 3)

Vue 3 组件
按钮类型
简洁风格
按钮尺寸
禁用状态
图标按钮
加载状态
Vue 3 代码示例
<template>
  <el-button>Default</el-button>
  <el-button type="primary">Primary</el-button>
  <el-button type="success">Success</el-button>
  <el-button type="warning">Warning</el-button>
  <el-button type="danger">Danger</el-button>
  <el-button type="info">Info</el-button>
</template>

<script setup>
// Element Plus 自动导入
</script>