Merge branch 'next' of https://gitee.com/layui/layui-vue into next

This commit is contained in:
0o张不歪o0 2022-10-10 10:47:24 +08:00
commit f8f9ac6551
6 changed files with 11 additions and 11 deletions

View File

@ -126,5 +126,5 @@ const footOnClear = () => {
const ChildUpdateModelValue = () => { const ChildUpdateModelValue = () => {
emits("update:modelValue", Day.value); emits("update:modelValue", Day.value);
} };
</script> </script>

View File

@ -79,6 +79,7 @@ var timer: any;
const getOption = (nodes: VNode[]) => { const getOption = (nodes: VNode[]) => {
nodes nodes
?.filter((item: VNode) => { ?.filter((item: VNode) => {
console.log(JSON.stringify(item));
return item.children != "v-if"; return item.children != "v-if";
}) })
?.map((item: VNode) => { ?.map((item: VNode) => {

View File

@ -4,13 +4,13 @@
::: title 基本介绍 ::: title 基本介绍
::: :::
::: describe 需要一个简洁的确认框询问用户时。 ::: describe 需要一个简洁的对话框询问用户时。
::: :::
::: title 基础使用 ::: title 基础使用
::: :::
::: demo ::: demo 通过 `layer.confirm` 方法, 创建一个对话框。
<template> <template>
<lay-button type="primary" @click="openConfirm1">信息框</lay-button> <lay-button type="primary" @click="openConfirm1">信息框</lay-button>
@ -38,7 +38,7 @@ export default {
::: title 指定操作 ::: title 指定操作
::: :::
::: demo ::: demo 使用 `btn` 属性, 自定义对话框操作列表。
<template> <template>
<lay-button type="primary" @click="openConfirm2">询问框</lay-button> <lay-button type="primary" @click="openConfirm2">询问框</lay-button>
@ -63,7 +63,6 @@ export default {
::: :::
::: title 组件方法 ::: title 组件方法
::: :::

View File

@ -10,7 +10,7 @@
::: title 基础使用 ::: title 基础使用
::: :::
::: demo ::: demo 使用 layer.load(type, options) 方法创建一个加载层, `type` 属性用于设置弹出层类型。
<template> <template>
<lay-button-container> <lay-button-container>
@ -53,7 +53,7 @@ export default {
::: title 其他方式 ::: title 其他方式
::: :::
::: demo ::: demo 使用 `layer.msg` 方法, 设置 `icon` 为 16, 弹出一个带有加载动画的提示信息。
<template> <template>
<lay-button type="primary" @click="openLoading">加载消息</lay-button> <lay-button type="primary" @click="openLoading">加载消息</lay-button>
@ -81,7 +81,7 @@ export default {
::: title 手动关闭 ::: title 手动关闭
::: :::
::: demo 使用 layer.msg 创建弹出层, time 属性用于配置显示时长 ::: demo 通过 `layer.close()` 方法来关闭一个正在加载的实例。
<template> <template>
<lay-button-container> <lay-button-container>

View File

@ -16,7 +16,7 @@
<lay-select v-model="value" placeholder="请选择"> <lay-select v-model="value" placeholder="请选择">
<lay-select-option :value="1" label="学习"></lay-select-option> <lay-select-option :value="1" label="学习"></lay-select-option>
<lay-select-option :value="2" label="编码"></lay-select-option> <lay-select-option :value="2" label="编码"></lay-select-option>
<lay-select-option :value="3" label="运动"></lay-select-option> <lay-select-option :value="3" v-if="true" label="运动"></lay-select-option>
</lay-select> </lay-select>
</template> </template>

View File

@ -415,7 +415,7 @@ const menus = [
}, },
{ {
id: 92, id: 92,
title: "询问", title: "对话框",
subTitle: "confirm", subTitle: "confirm",
path: "/zh-CN/components/confirm", path: "/zh-CN/components/confirm",
}, },