0.0.1 • Published 5 years ago
@ansevenlet/button v0.0.1
title: Button description: Button component doc tags:
- "components"
Button
This is Button component
Install
import ui from "@vitec/button";
createApp(App).use(ui);
Basic
<template>
<el-button>默认按钮</el-button>
<el-button type="primary">主要按钮</el-button>
<el-button type="success">成功按钮</el-button>
<el-button type="info">信息按钮</el-button>
<el-button type="warning">警告按钮</el-button>
<el-button type="danger">危险按钮</el-button>
</template>