You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.8 KiB
51 lines
1.8 KiB
<template> |
|
<div class="container"> |
|
<h1>首页</h1> |
|
<h2>按钮</h2> |
|
<el-row class="mb-4"> |
|
<el-button>Default</el-button> |
|
<el-button type="primary">Primary</el-button> |
|
<el-button type="success">Success</el-button> |
|
<el-button type="info">Info</el-button> |
|
<el-button type="warning">Warning</el-button> |
|
<el-button type="danger">Danger</el-button> |
|
</el-row> |
|
|
|
<el-row class="mb-4"> |
|
<el-button plain>Plain</el-button> |
|
<el-button type="primary" plain>Primary</el-button> |
|
<el-button type="success" plain>Success</el-button> |
|
<el-button type="info" plain>Info</el-button> |
|
<el-button type="warning" plain>Warning</el-button> |
|
<el-button type="danger" plain>Danger</el-button> |
|
</el-row> |
|
|
|
<el-row class="mb-4"> |
|
<el-button round>Round</el-button> |
|
<el-button type="primary" round>Primary</el-button> |
|
<el-button type="success" round>Success</el-button> |
|
<el-button type="info" round>Info</el-button> |
|
<el-button type="warning" round>Warning</el-button> |
|
<el-button type="danger" round>Danger</el-button> |
|
</el-row> |
|
|
|
<el-row> |
|
<el-button :icon="Search" circle /> |
|
<el-button type="primary" :icon="Edit" circle /> |
|
<el-button type="success" :icon="Check" circle /> |
|
<el-button type="info" :icon="Message" circle /> |
|
<el-button type="warning" :icon="Star" circle /> |
|
<el-button type="danger" :icon="Delete" circle /> |
|
</el-row> |
|
</div> |
|
</template> |
|
<script setup> |
|
</script> |
|
<style lang="scss" scoped> |
|
.container { |
|
padding: 20px; |
|
} |
|
.el-row { |
|
margin-bottom: 20px; |
|
} |
|
</style> |