layui/example/docs/zh-CN/components/msg.md

95 lines
1.8 KiB
Markdown
Raw Normal View History

::: anchor
:::
2021-12-08 11:54:42 +08:00
::: title 基础使用
:::
::: demo
2021-12-08 17:40:28 +08:00
<template>
<lay-button type="primary" @click="openMsg">普通消息</lay-button>
</template>
<script>
import { layer } from "@layui/layer-vue"
2021-12-08 17:40:28 +08:00
export default {
setup() {
const openMsg = function() {
2022-02-20 22:15:59 +08:00
layer.msg("普通消息", { time: 1000 })
2021-12-08 17:40:28 +08:00
}
return {
openMsg
}
}
}
</script>
:::
::: title 指定图标
:::
::: demo
2021-12-08 11:54:42 +08:00
<template>
<lay-button type="primary" @click="openSuccess">成功消息</lay-button>
<lay-button type="primary" @click="openFailure">失败消息</lay-button>
<lay-button type="primary" @click="openWarning">警告消息</lay-button>
<lay-button type="primary" @click="openPrimary">详情消息</lay-button>
<lay-button type="primary" @click="openLoading">加载消息</lay-button>
</template>
<script>
import { layer } from "@layui/layer-vue"
2021-12-08 11:54:42 +08:00
export default {
setup() {
const openSuccess = function() {
2022-01-27 16:18:16 +08:00
layer.msg("成功消息", { icon : 1, time: 100000})
2021-12-08 11:54:42 +08:00
}
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>
2021-12-09 14:11:29 +08:00
:::
::: title 组件方法
:::
```
layer.msg(content, options)
```
::: title 组件属性
:::
::: table
| 属性 | 描述 | 备注 |
| ------------------- | ------ | ----|
| content | 消息内容 | -- |
| options | 选配属性 | { time: 加载时长, icon: 图标 } |
2021-12-16 17:57:59 +08:00
:::
::: comment
2022-01-12 14:19:06 +08:00
:::
::: previousNext msg
2021-12-08 11:54:42 +08:00
:::