🌺 增补 load 加载层文档

This commit is contained in:
就眠儀式
2021-12-06 22:58:46 +08:00
parent 0592b3cd72
commit 940b455f14
6 changed files with 107 additions and 30 deletions

View File

@@ -0,0 +1,77 @@
::: title 基础使用
:::
::: demo
<template>
<lay-button-container>
<lay-button @click="loading0" type="primary">加载一</lay-button>
<lay-button @click="loading1" type="primary">加载二</lay-button>
<lay-button @click="loading2" type="primary">加载三</lay-button>
</lay-button-container>
</template>
<script>
import { ref } from 'vue'
import { layer } from "../../../../src/index.ts"
export default {
setup() {
const loading0 = function() {
layer.load(0, {time: 3000})
}
const loading1 = function() {
layer.load(1, {time: 3000})
}
const loading2 = function() {
layer.load(2, {time: 3000})
}
return {
loading0,
loading1,
loading2
}
}
}
</script>
:::
::: title 手动关闭
:::
::: demo
<template>
<lay-button-container>
<lay-button @click="loading" type="primary">加载</lay-button>
</lay-button-container>
</template>
<script>
import { ref } from 'vue'
import { layer } from "../../../../src/index.ts"
export default {
setup() {
const loading = function() {
let id = layer.load(0)
setTimeout(() => {
layer.close(id)
},3000)
}
return {
loading
}
}
}
</script>
:::