升级 vue 3.2.26

This commit is contained in:
就眠儀式 2021-12-16 21:54:30 +08:00
parent 86350f0ec4
commit 77e6098de8
7 changed files with 14 additions and 16 deletions

View File

@ -18,10 +18,13 @@
<ul> <ul>
<li>[新增] tooltip 警告提示,展现需要关注的信息。</li> <li>[新增] tooltip 警告提示,展现需要关注的信息。</li>
<li>[新增] input-number 数字输入框, 通过鼠标或键盘,输入范围内的数值。</li> <li>[新增] input-number 数字输入框, 通过鼠标或键盘,输入范围内的数值。</li>
<li>[加强] layer 组件 area 属性, 支持 字符串 与 数组 类型, 默认为 auto 宽高自适应。</li> <li>[新增] layer 组件 isHtmlFangement 属性,函数调用时,用于解析 html 片段。</li>
<li>[新增] layer 组件 resize 属性, 开启弹层尺寸拉伸, 常用于 页面层 与 Iframe 层。</li>
<li>[加强] layer 组件 area 属性, 支持 字符串 与 数组 类型, 默认 auto 宽高根据内容自适应。</li>
<li>[修复] layer 组件 body 禁用拖动, 仅支持标题拖动窗体。</li> <li>[修复] layer 组件 body 禁用拖动, 仅支持标题拖动窗体。</li>
<li>[集成] utteranc.es 文档评论。</li> <li>[集成] utteranc.es 插件, 基于 issues 提供为文档提供留言能力。</li>
<li>[升级] layer-vue 1.1.7。</li> <li>[升级] layer-vue 1.2.0, 更稳定的 layer 版本。</li>
<li>[升级] vue 3.2.26 版本。</li>
</ul> </ul>
</li> </li>
</ul> </ul>

View File

@ -15,7 +15,6 @@ export default {
utterances.crossorigin = 'anonymous'; utterances.crossorigin = 'anonymous';
utterances.src = 'https://utteranc.es/client.js'; utterances.src = 'https://utteranc.es/client.js';
window.document.getElementById('comment').appendChild(utterances); window.document.getElementById('comment').appendChild(utterances);
} }
}, },
mounted: function(){ mounted: function(){

View File

@ -12,11 +12,9 @@
border-left: 1px solid whitesmoke; border-left: 1px solid whitesmoke;
border-radius: 4px; border-radius: 4px;
} }
.lay-table-box table tbody { .lay-table-box table tbody {
border-bottom: 1px solid whitesmoke; border-bottom: 1px solid whitesmoke;
} }
.lay-table-box table th, .lay-table-box table th,
.lay-table-box table td { .lay-table-box table td {
font-size: 14px; font-size: 14px;
@ -27,14 +25,12 @@
padding: 0 10px; /*内边距*/ padding: 0 10px; /*内边距*/
padding-left: 28px; padding-left: 28px;
} }
.lay-table-box table th { .lay-table-box table th {
color: #666; color: #666;
font-weight: 500; font-weight: 500;
white-space: nowrap; /*表头内容强制在一行显示*/ white-space: nowrap; /*表头内容强制在一行显示*/
background-color: #fafafa; background-color: #fafafa;
} }
.lay-table-box table td { .lay-table-box table td {
white-space: nowrap; white-space: nowrap;
} }

View File

@ -49,8 +49,8 @@ const zhCN = [
meta: { title: '问题' }, meta: { title: '问题' },
}, },
{ {
path: '/zh-CN/guide/team', path: '/zh-CN/guide/member',
component: () => import('../../docs/zh-CN/guide/contribution.md'), component: () => import('../../docs/zh-CN/guide/member.md'),
meta: { title: '团队' }, meta: { title: '团队' },
}, },
{ {

View File

@ -101,8 +101,8 @@ export default {
{ {
id: 6, id: 6,
title: '团队', title: '团队',
subTitle: 'team', subTitle: 'member',
path: '/zh-CN/guide/team', path: '/zh-CN/guide/member',
} }
], ],
}, },

View File

@ -31,7 +31,7 @@
"@layui/hooks-vue": "^0.1.6", "@layui/hooks-vue": "^0.1.6",
"@layui/icons-vue": "^1.0.1", "@layui/icons-vue": "^1.0.1",
"@layui/layer-vue": "^1.1.9", "@layui/layer-vue": "^1.1.9",
"vue": "^3.2.24", "vue": "^3.2.26",
"vue-router": "^4.0.12" "vue-router": "^4.0.12"
}, },
"dependencies": { "dependencies": {
@ -39,7 +39,7 @@
"@layui/icons-vue": "^1.0.1", "@layui/icons-vue": "^1.0.1",
"@layui/layer-vue": "^1.1.9", "@layui/layer-vue": "^1.1.9",
"evtd": "^0.2.3", "evtd": "^0.2.3",
"vue": "^3.2.24", "vue": "^3.2.26",
"vue-router": "^4.0.12" "vue-router": "^4.0.12"
}, },
"devDependencies": { "devDependencies": {
@ -51,8 +51,8 @@
"@types/markdown-it-container": "^2.0.4", "@types/markdown-it-container": "^2.0.4",
"@types/node": "^16.11.9", "@types/node": "^16.11.9",
"@vitejs/plugin-vue": "^1.9.3", "@vitejs/plugin-vue": "^1.9.3",
"@vue/compiler-sfc": "^3.2.24", "@vue/compiler-sfc": "^3.2.26",
"@vue/server-renderer": "^3.2.24", "@vue/server-renderer": "^3.2.26",
"escape-html": "^1.0.3", "escape-html": "^1.0.3",
"less": "^4.1.2", "less": "^4.1.2",
"markdown-it-container": "^3.0.0", "markdown-it-container": "^3.0.0",