mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-15 03:06:25 +08:00

* docs: modify layout style * docs: modify nav padding * docs: update style * feat: update * docs: upadte * docs: update * docs: modify layout style * docs: update style * feat: update * docs: upadte * docs: update * docs: update * docs: update * docs: remove empty script * docs: update --------- Co-authored-by: kooriookami <bingshuanglingluo@163.com> Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
18 lines
369 B
Vue
18 lines
369 B
Vue
<template>
|
|
<div style="max-width: 600px">
|
|
<el-alert title="success alert" type="success" />
|
|
<el-alert title="info alert" type="info" />
|
|
<el-alert title="warning alert" type="warning" />
|
|
<el-alert title="error alert" type="error" />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.el-alert {
|
|
margin: 20px 0 0;
|
|
}
|
|
.el-alert:first-child {
|
|
margin: 0;
|
|
}
|
|
</style>
|