alert.vue 333 B

123456
  1. <template>
  2. <el-alert title="success alert" type="success" style="margin-bottom: 20px" />
  3. <el-alert title="info alert" type="info" style="margin-bottom: 20px" />
  4. <el-alert title="warning alert" type="warning" style="margin-bottom: 20px" />
  5. <el-alert title="error alert" type="error" style="margin-bottom: 20px" />
  6. </template>