📝(document): 修复使用到switch开关组件文字描述功能的文档没有正常显示的问题,原因:api属性变动,而文档中组件没有跟着变动
修复使用到switch开关组件文字描述功能的文档没有正常显示的问题,原因:api属性变动,而文档中组件没有跟着变动
This commit is contained in:
parent
b0b90384c7
commit
fb16960f28
@ -15,7 +15,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div style="margin-bottom: 10px">
|
<div style="margin-bottom: 10px">
|
||||||
<lay-switch v-model="loading" active-text="加载" inactive-text="关闭"></lay-switch>
|
<lay-switch v-model="loading" onswitch-text="加载" unswitch-text="关闭"></lay-switch>
|
||||||
</div>
|
</div>
|
||||||
<lay-skeleton :rows="4" :loading="loading" animated>
|
<lay-skeleton :rows="4" :loading="loading" animated>
|
||||||
<p style="margin-bottom: 18px">1 layui-vue , 基 于 vue 3.0 的 桌 面 端 组 件 库 , layui 的 另 一 种 呈 现 方 式</p>
|
<p style="margin-bottom: 18px">1 layui-vue , 基 于 vue 3.0 的 桌 面 端 组 件 库 , layui 的 另 一 种 呈 现 方 式</p>
|
||||||
@ -50,7 +50,7 @@ export default {
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div style="margin-bottom: 10px">
|
<div style="margin-bottom: 10px">
|
||||||
<lay-switch v-model="loading" active-text="加载" inactive-text="关闭"></lay-switch>
|
<lay-switch v-model="loading" onswitch-text="加载" unswitch-text="关闭"></lay-switch>
|
||||||
</div>
|
</div>
|
||||||
<lay-skeleton :loading="loading" animated>
|
<lay-skeleton :loading="loading" animated>
|
||||||
<template #skeleton>
|
<template #skeleton>
|
||||||
|
@ -97,7 +97,7 @@ export default {
|
|||||||
::: demo
|
::: demo
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<lay-switch v-model="active4" active-text="白天" inactive-text="夜间"></lay-switch>
|
<lay-switch v-model="active4" onswitch-text="白天" unswitch-text="夜间"></lay-switch>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -105,8 +105,8 @@ setup() {
|
|||||||
<lay-tooltip :content="content" :is-dark="isDark" :disabled="!disabled">
|
<lay-tooltip :content="content" :is-dark="isDark" :disabled="!disabled">
|
||||||
<lay-button>tooltip</lay-button>
|
<lay-button>tooltip</lay-button>
|
||||||
</lay-tooltip>
|
</lay-tooltip>
|
||||||
<lay-switch v-model="disabled" active-text="启用tooltip" inactive-text="禁用tooltip" style="margin-left: 5px;"></lay-switch>
|
<lay-switch v-model="disabled" onswitch-text="启用tooltip" unswitch-text="禁用tooltip" style="margin-left: 5px;"></lay-switch>
|
||||||
<lay-switch v-model="isDark" active-text="深色" inactive-text="浅色" style="margin-left: 5px;"></lay-switch>
|
<lay-switch v-model="isDark" onswitch-text="深色" unswitch-text="浅色" style="margin-left: 5px;"></lay-switch>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
Loading…
Reference in New Issue
Block a user