修复 tab-item 组件 closable 属性警告
This commit is contained in:
parent
f409585315
commit
95c72ada8e
@ -14,10 +14,11 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<a name="0-3-5"> </a>
|
<a name="0-3-5"> </a>
|
||||||
<li>
|
<li>
|
||||||
<h3>0.3.5 <span class="layui-badge-rim">2022-01-19</span></h3>
|
<h3>0.3.5 <span class="layui-badge-rim">2022-01-24</span></h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>[新增] split-panel 分割面板, 高度灵活的布局组件。</li>
|
<li>[新增] split-panel 分割面板, 高度灵活的布局组件。</li>
|
||||||
<li>[新增] layer 弹层 type 属性 drawer 值, 支持抽屉模式。</li>
|
<li>[新增] layer 弹层 type 属性 drawer 可选值, 提供抽屉模式。</li>
|
||||||
|
<li>[修复] tab-item 组件 closable 属性警告, 兼容 string 类型。</li>
|
||||||
<li>[修复] dropdown 下拉菜单 content 显示位置问题。</li>
|
<li>[修复] dropdown 下拉菜单 content 显示位置问题。</li>
|
||||||
<li>[升级] icons-vue 1.0.3 版本。</li>
|
<li>[升级] icons-vue 1.0.3 版本。</li>
|
||||||
<li>[升级] layer-vue 1.3.1 版本。</li>
|
<li>[升级] layer-vue 1.3.1 版本。</li>
|
||||||
|
@ -17,7 +17,7 @@ const props = withDefaults(
|
|||||||
defineProps<{
|
defineProps<{
|
||||||
id: string;
|
id: string;
|
||||||
title: string;
|
title: string;
|
||||||
closable?: boolean;
|
closable?: boolean | string;
|
||||||
}>(),
|
}>(),
|
||||||
{
|
{
|
||||||
closable: true,
|
closable: true,
|
||||||
|
@ -149,7 +149,6 @@ const components: Record<string, IDefineComponent> = {
|
|||||||
const install = (app: App, options?: InstallOptions): void => {
|
const install = (app: App, options?: InstallOptions): void => {
|
||||||
const _options = options;
|
const _options = options;
|
||||||
app.config.globalProperties.$PROOPTIONS = _options;
|
app.config.globalProperties.$PROOPTIONS = _options;
|
||||||
app.config.globalProperties.$layer = useLayer(app._context);
|
|
||||||
for (const key in components) {
|
for (const key in components) {
|
||||||
const item = components[key];
|
const item = components[key];
|
||||||
app.component(item.name || key, item);
|
app.component(item.name || key, item);
|
||||||
@ -227,6 +226,6 @@ export {
|
|||||||
LaySubMenu,
|
LaySubMenu,
|
||||||
};
|
};
|
||||||
|
|
||||||
export { layer };
|
export { layer, useLayer };
|
||||||
|
|
||||||
export default { install };
|
export default { install };
|
Loading…
x
Reference in New Issue
Block a user