mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
31 lines
529 B
Vue
31 lines
529 B
Vue
|
<template>
|
||
|
<el-alert
|
||
|
title="success alert"
|
||
|
type="success"
|
||
|
description="more text description"
|
||
|
show-icon
|
||
|
>
|
||
|
</el-alert>
|
||
|
<el-alert
|
||
|
title="info alert"
|
||
|
type="info"
|
||
|
description="more text description"
|
||
|
show-icon
|
||
|
>
|
||
|
</el-alert>
|
||
|
<el-alert
|
||
|
title="warning alert"
|
||
|
type="warning"
|
||
|
description="more text description"
|
||
|
show-icon
|
||
|
>
|
||
|
</el-alert>
|
||
|
<el-alert
|
||
|
title="error alert"
|
||
|
type="error"
|
||
|
description="more text description"
|
||
|
show-icon
|
||
|
>
|
||
|
</el-alert>
|
||
|
</template>
|