Files
2025-05-20 07:46:08 +08:00

19 lines
508 B
Vue

<template>
<div style="max-width: 600px">
<el-alert title="Primary alert" type="primary" center show-icon />
<el-alert title="Success alert" type="success" center show-icon />
<el-alert title="Info alert" type="info" center show-icon />
<el-alert title="Warning alert" type="warning" center show-icon />
<el-alert title="Error alert" type="error" center show-icon />
</div>
</template>
<style scoped>
.el-alert {
margin: 20px 0 0;
}
.el-alert:first-child {
margin: 0;
}
</style>