mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-06 10:38:31 +08:00
16 lines
301 B
Vue
16 lines
301 B
Vue
|
<template>
|
||
|
<el-badge value="new" class="item">
|
||
|
<el-button size="small">comments</el-button>
|
||
|
</el-badge>
|
||
|
<el-badge value="hot" class="item">
|
||
|
<el-button size="small">replies</el-button>
|
||
|
</el-badge>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.item {
|
||
|
margin-top: 10px;
|
||
|
margin-right: 40px;
|
||
|
}
|
||
|
</style>
|