Files
layui/example/docs/zh-CN/components/msg.md
2022-02-20 22:15:59 +08:00

1.8 KiB

::: anchor :::

::: title 基础使用 :::

::: demo

普通消息 <script> import { layer } from "@layui/layer-vue" export default { setup() { const openMsg = function() { layer.msg("普通消息", { time: 1000 }) } return { openMsg } } } </script>

:::

::: title 指定图标 :::

::: demo

成功消息 失败消息 警告消息 详情消息 加载消息 <script> import { layer } from "@layui/layer-vue" export default { setup() { const openSuccess = function() { layer.msg("成功消息", { icon : 1, time: 100000}) } const openFailure = function() { layer.msg("失败消息", { icon : 2, time: 1000}) } const openWarning = function() { layer.msg("警告消息", { icon : 3, time: 1000}) } const openPrimary = function() { layer.msg("详情消息", { icon : 4, time: 1000}) } const openLoading = function() { layer.msg("加载消息", { icon : 16, time: 1000}) } return { openSuccess, openFailure, openWarning, openPrimary, openLoading } } } </script>

:::

::: title 组件方法 :::

layer.msg(content, options)

::: title 组件属性 :::

::: table

属性 描述 备注
content 消息内容 --
options 选配属性 { time: 加载时长, icon: 图标 }

:::

::: comment :::

::: previousNext msg :::