element-plus/docs/examples/alert/theme.vue

15 lines
414 B
Vue

<template>
<el-alert title="success alert" type="success" effect="dark"> </el-alert>
<el-alert title="info alert" type="info" effect="dark"> </el-alert>
<el-alert title="warning alert" type="warning" effect="dark"> </el-alert>
<el-alert title="error alert" type="error" effect="dark"> </el-alert>
</template>
<style scoped>
.el-alert {
margin: 20px 0 0;
}
.el-alert:first-child {
margin: 0;
}
</style>