From 4c39705dab1d4b7178dfcd83e23a145b693ff13f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=B0=B1=E7=9C=A0=E5=84=80=E5=BC=8F?= <854085467@qq.com>
Date: Tue, 7 Dec 2021 18:25:49 +0800
Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20=E5=8D=87=E7=BA=A7=20vue?=
=?UTF-8?q?=203.2.24?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
example/docs/zh-CN/components/confirm.md | 55 ++++++++++++++++++++++++
example/docs/zh-CN/guide/changelog.md | 11 +++--
example/docs/zh-CN/guide/getStarted.md | 7 ++-
example/docs/zh-CN/guide/sponsor.md | 2 +
example/docs/zh-CN/guide/theme.md | 2 +
example/docs/zh-CN/hooks/useStarted.md | 3 +-
example/src/router/zh-CN.ts | 15 +++++--
example/src/view/component.vue | 5 +++
example/src/view/guide.vue | 30 +++++++++++--
package.json | 8 ++--
10 files changed, 119 insertions(+), 19 deletions(-)
create mode 100644 example/docs/zh-CN/components/confirm.md
create mode 100644 example/docs/zh-CN/guide/sponsor.md
create mode 100644 example/docs/zh-CN/guide/theme.md
diff --git a/example/docs/zh-CN/components/confirm.md b/example/docs/zh-CN/components/confirm.md
new file mode 100644
index 00000000..1d831965
--- /dev/null
+++ b/example/docs/zh-CN/components/confirm.md
@@ -0,0 +1,55 @@
+::: title 基础使用
+:::
+
+::: demo
+
+
+ 信息框
+
+
+
+
+:::
+
+::: title 指定操作
+:::
+
+::: demo
+
+
+ 询问框
+
+
+
+
+:::
\ No newline at end of file
diff --git a/example/docs/zh-CN/guide/changelog.md b/example/docs/zh-CN/guide/changelog.md
index de162290..a4304567 100644
--- a/example/docs/zh-CN/guide/changelog.md
+++ b/example/docs/zh-CN/guide/changelog.md
@@ -11,9 +11,14 @@
-[依赖] hooks-vue 0.1.2。
+[新增] useState 状态管理 hooks。
+[新增] useBoolean (特殊的 useState) 布尔状态管理 hooks。
+[新增] layer 对象 load 方法, 通过 type 配置调用不同类型加载层。
+[文档] icons-vue 组件化使用方式。
+[文档] hooks-vue 安装文档。
+[升级] hooks-vue 0.1.2。
[升级] layer-vue 1.0.3。
-[修复] icons-vue 依赖 not found。
+[升级] vue 3.2.24。
[依赖] hooks-vue 0.1.2。
@@ -26,7 +31,7 @@
[修复] layer 的 id 属性不唯一, 调整 Guid 为 Uuid 策略。
[修改] lay-layer 组件为 lay-modal, 使用方式保持不变。
[修改] lay-layer 组件 move 默认为 true, 默认提供拖拽支持。
-[修稿] layer.css 为 @layui/layui-vue/lib/index.css。
+[修改] layer.css 为 @layui/layui-vue/lib/index.css。
[独立] layui-vue 项目, layer 与 lay-modal 组件仍内置, 亦支持单独引用。
[独立] icons-vue 项目, lay-icon 与 iconfont.less 仍内置, 亦支持单独引用。
diff --git a/example/docs/zh-CN/guide/getStarted.md b/example/docs/zh-CN/guide/getStarted.md
index e53a1b80..fbae85a7 100644
--- a/example/docs/zh-CN/guide/getStarted.md
+++ b/example/docs/zh-CN/guide/getStarted.md
@@ -1,10 +1,9 @@
::: title 快速上手
:::
-
-::: describe 1.使用 npm 下载
+::: describe 1. 使用 npm 下载
:::
```
@@ -13,7 +12,7 @@ npm install @layui/layui-vue --save
-::: describe 2.在 main.ts 中依赖
+::: describe 2. 在 main.ts 中依赖
:::
```js
@@ -27,7 +26,7 @@ createApp(App).use(Layui).mount('#app')
-::: describe 3.在 index.vue 使用
+::: describe 3. 在 index.vue 使用
:::
```html
diff --git a/example/docs/zh-CN/guide/sponsor.md b/example/docs/zh-CN/guide/sponsor.md
new file mode 100644
index 00000000..b35db1ed
--- /dev/null
+++ b/example/docs/zh-CN/guide/sponsor.md
@@ -0,0 +1,2 @@
+::: title 赞助我们
+:::
\ No newline at end of file
diff --git a/example/docs/zh-CN/guide/theme.md b/example/docs/zh-CN/guide/theme.md
new file mode 100644
index 00000000..0b6d4772
--- /dev/null
+++ b/example/docs/zh-CN/guide/theme.md
@@ -0,0 +1,2 @@
+::: title 定义主题
+:::
\ No newline at end of file
diff --git a/example/docs/zh-CN/hooks/useStarted.md b/example/docs/zh-CN/hooks/useStarted.md
index b5449d73..a64a0988 100644
--- a/example/docs/zh-CN/hooks/useStarted.md
+++ b/example/docs/zh-CN/hooks/useStarted.md
@@ -1,10 +1,9 @@
::: title 快速上手
:::
-
-::: describe 1.使用 npm 下载
+::: describe 1. 使用 npm 下载
:::
```
diff --git a/example/src/router/zh-CN.ts b/example/src/router/zh-CN.ts
index 4e410230..ce75dc34 100644
--- a/example/src/router/zh-CN.ts
+++ b/example/src/router/zh-CN.ts
@@ -53,9 +53,14 @@ const zhCN = [
meta: { title: '规范' },
},
{
- path: '/zh-CN/guide/sandbox',
- component: () => import('../../docs/zh-CN/guide/sandbox.md'),
- meta: { title: '沙盒' },
+ path: '/zh-CN/guide/theme',
+ component: () => import('../../docs/zh-CN/guide/theme.md'),
+ meta: { title: '主题' },
+ },
+ {
+ path: '/zh-CN/guide/sponsor',
+ component: () => import('../../docs/zh-CN/guide/sponsor.md'),
+ meta: { title: '赞助' },
},
],
},
@@ -266,6 +271,10 @@ const zhCN = [
path: '/zh-CN/components/load',
component: () => import('../../docs/zh-CN/components/load.md'),
meta: { title: '加载' },
+ },{
+ path: '/zh-CN/components/confirm',
+ component: () => import('../../docs/zh-CN/components/confirm.md'),
+ meta: { title: '确认' },
},
],
},
diff --git a/example/src/view/component.vue b/example/src/view/component.vue
index acd73dc7..978daad2 100644
--- a/example/src/view/component.vue
+++ b/example/src/view/component.vue
@@ -342,6 +342,11 @@ export default {
title: '加载层',
subTitle: 'modal',
path: '/zh-CN/components/load',
+ }, {
+ id: 90,
+ title: '询问框',
+ subTitle: 'confirm',
+ path: '/zh-CN/components/confirm',
},
],
},
diff --git a/example/src/view/guide.vue b/example/src/view/guide.vue
index 07e86e7c..4d0356ff 100644
--- a/example/src/view/guide.vue
+++ b/example/src/view/guide.vue
@@ -77,15 +77,39 @@ export default {
{
id: 2,
title: '安装',
- subTitle: 'get started',
+ subTitle: 'started',
path: '/zh-CN/guide/getStarted',
},
{
id: 3,
title: '更新',
- subTitle: 'change log',
+ subTitle: 'change',
path: '/zh-CN/guide/changelog',
- }
+ },
+ {
+ id: 4,
+ title: '问题',
+ subTitle: 'problem',
+ path: '/zh-CN/guide/problem',
+ },
+ {
+ id: 5,
+ title: '主题',
+ subTitle: 'theme',
+ path: '/zh-CN/guide/theme',
+ },
+ {
+ id: 6,
+ title: '赞助',
+ subTitle: 'sponsor',
+ path: '/zh-CN/guide/sponsor',
+ },
+ {
+ id: 7,
+ title: '贡献',
+ subTitle: 'contribution',
+ path: '/zh-CN/guide/contribution',
+ },
],
},
]
diff --git a/package.json b/package.json
index d6504e60..3970d413 100644
--- a/package.json
+++ b/package.json
@@ -28,14 +28,14 @@
"author": "就眠儀式",
"license": "MIT",
"peerDependencies": {
- "vue": "^3.2.23",
+ "vue": "^3.2.24",
"vue-router": "^4.0.12",
"@layui/layer-vue": "^1.0.7",
"@layui/icons-vue": "^1.0.0",
"@layui/hooks-vue": "^0.1.6"
},
"dependencies": {
- "vue": "^3.2.23",
+ "vue": "^3.2.24",
"vue-router": "^4.0.12",
"@layui/layer-vue": "^1.0.7",
"@layui/icons-vue": "^1.0.0",
@@ -50,8 +50,8 @@
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-container": "^2.0.4",
"@vitejs/plugin-vue": "^1.9.3",
- "@vue/compiler-sfc": "^3.2.23",
- "@vue/server-renderer": "^3.2.23",
+ "@vue/compiler-sfc": "^3.2.24",
+ "@vue/server-renderer": "^3.2.24",
"escape-html": "^1.0.3",
"less": "^4.1.2",
"markdown-it-container": "^3.0.0",