0.1.5 • Published 3 years ago

vuetify-snackbar-message v0.1.5

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

$message消息提示

代码展示

this.$message({
      message: "成功成功",
      type: "success",
      icon: { name: "mdi-alarm", color: '#f43143' },
      show: true,
      outlined: true,
      shaped: true,
      top: true,
      html: true,
      text: true,
      duration: 2000,
      closeBtn: true,
      close() {
        console.log(123);
      },
    });

参数详情

msg参数

参数默认值类型说明
typesuccessString提示框类型有success、warning、error、info四种。
message-String需要显示的提示文字。
timeout3000Number/String等待message 自动隐藏的时间 (毫秒) 。使用 “-1” 保持无限期打开 。
icon-Objectmessage的icon图标及背景色配置。具体参数说明见下方icon参数表。
closeBtnfalseBoolean关闭按钮,可手动关闭message提示框,默认不显示。
close0.2Function点击关闭按钮的钩子
topfalseBooleanmessage靠顶部显示
leftfalseBooleanmessage靠左侧显示
rightfalseBooleanmessage靠右侧显示
textfalseString将定义的 color 应用于文本和同样的低透明度背景。
outlinedfalseString去除卡片的实心颜色并添加细边框。
shapedfalseString在卡片的左上角和右下角应用较大的边框半径。
htmlfalseBooleanmessage消息可以识别html标签

icon参数

参数默认值类型说明
icontype四种状态各有一个默认值,就不细说了,自己试试。Stringicon图标, 对于所有可用图标的列表, 请访问官方的 Material Design 图标 页面。要使用任何这些图标,只需使用 mdi- 前缀,然后是图标名称
color如上Stringmessage提示框的背景色。