element-plus/ssr-testing/cases/badge.vue

15 lines
456 B
Vue
Raw Normal View History

<template>
<el-badge :value="12" style="margin-right: 20px">
<el-button>comments</el-button>
</el-badge>
<el-badge :value="3" style="margin-right: 20px">
<el-button>replies</el-button>
</el-badge>
<el-badge :value="1" type="primary" style="margin-right: 20px">
<el-button>comments</el-button>
</el-badge>
<el-badge :value="2" type="warning" style="margin-right: 20px">
<el-button>replies</el-button>
</el-badge>
</template>