# Alert 按钮

常用的操作按钮

# 基础用法

基础的按钮用法

成功提示的文案
<template>
    <ml-alert
    class="ml-alert"
    title="成功提示的文案"
    type="success">
  </ml-alert>
</template>
<script>
export default {
  name: 'AlertDemoBase'
}
</script>
<style scoped>
  .ml-alert {
    margin-bottom: 10px;
  }
</style>
显示代码