(component): 补充 load 文档描述

This commit is contained in:
就眠儀式 2022-10-10 09:37:32 +08:00
parent cb361d7dff
commit bd310d005f
3 changed files with 5 additions and 4 deletions

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

@ -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>