Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 520 Bytes

msg.md

File metadata and controls

22 lines (16 loc) · 520 Bytes

$msg

使用vue实例方法快速调用提示框

usage

  • $msg(参数对象)
  • $msg.info(内容, [图标], [持续时间]) 提示
  • $msg.success(内容, [图标], [持续时间]) 成功
  • $msg.warning(内容, [图标], [持续时间]) 警告
  • $msg.error(内容, [图标], [持续时间]) 错误

参数对象支持coloriconcontentsizeduration属性

  this.$modal({
    color: 'yellow',
    content: '内容'
  })

  this.$msg.info(`内容`)