# toast

📌toast Options

toast与其他组件不同,采用插件的形式开发,因此可以在方法中直接调用 this.$toast(MESSAGE, OPTIONS), 其中MESSAGE是提示内容,传字符串,OPTIONS是配置选项,是一个Object

参数 说明 类型 可选值 默认值
autoClose 布尔值,表示是否自动关闭 Boolean true/false true
delay 表示消息提示显示时间,单位:秒 number —— 5
closeButton 有两个字段,text 以及 callback,前者表示关闭按钮的文字内容,后者表示点击了关闭之后的回调 Object test, callback {test: '关闭', callback: undefined}
position 表示提示框位置 String top, middle, bottom top