mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
15 lines
374 B
Vue
15 lines
374 B
Vue
<template>
|
|
<el-alert title="success alert" type="success" effect="dark" />
|
|
<el-alert title="info alert" type="info" effect="dark" />
|
|
<el-alert title="warning alert" type="warning" effect="dark" />
|
|
<el-alert title="error alert" type="error" effect="dark" />
|
|
</template>
|
|
<style scoped>
|
|
.el-alert {
|
|
margin: 20px 0 0;
|
|
}
|
|
.el-alert:first-child {
|
|
margin: 0;
|
|
}
|
|
</style>
|