# c-toast


提示框

wx
web
native

# 属性

属性名 类型 必填 默认值 说明
message String 提示框提示的内容
duration Number 3000 提示的延迟时间,单位为毫秒
type String “loading” 提示框的类型,有效值:loading/success/warn
mask Boolean false 是否显示透明蒙层
show Boolean false 是否显示
need-icon Boolean true 是否显示图标

# 示例

<template>
  <view class="toast-page">
    <c-toast show="{{true}}" message="加载中..." mask="{{true}}"></c-toast>
  </view>
</template>
<script>
class C_toast {}

export default new C_toast();
</script>
<script cml-type="json">
{
  "base": {
      "usingComponents": {
          "c-toast": "cml-ui/components/c-toast/c-toast"
      }
  }
}
</script>