nubomed-ui 2.0.28 → 2.0.29
Sign up to get free protection for your applications and to get access to all the features.
package/nubomed-ui.common.js
CHANGED
@@ -4535,7 +4535,7 @@ const i18n = function (fn) {
|
|
4535
4535
|
/*
|
4536
4536
|
* @Author: chenghuan.dong
|
4537
4537
|
* @Date: 2024-11-08 17:23:47
|
4538
|
-
* @LastEditTime: 2024-11-13
|
4538
|
+
* @LastEditTime: 2024-11-13 20:24:15
|
4539
4539
|
* @LastEditors: chenghuan.dong
|
4540
4540
|
* @Description: 主index.js导出全部组件
|
4541
4541
|
* @FilePath: \nubomed-ui\packages\index.js
|
@@ -4563,9 +4563,8 @@ const install = function (Vue, options = {}) {
|
|
4563
4563
|
if (install.installed) return;
|
4564
4564
|
components.forEach(component => {
|
4565
4565
|
const name = 'nb-' + camelToKebab(component.name.slice(2));
|
4566
|
-
const
|
4567
|
-
console.log(
|
4568
|
-
const installNames = ['nb-icon', 'nb-empty', 'nb-tag', 'nb-summary-bar'];
|
4566
|
+
const installNames = ['nb-icon', 'nb-tag', 'nb-empty', 'nb-header', 'nb-summary-bar']; // , 'nb-header'
|
4567
|
+
console.log((installNames.includes(name) ? '√ ' : '? ') + name);
|
4569
4568
|
if (installNames.includes(name)) {
|
4570
4569
|
Vue.component('nb-' + camelToKebab(component.name.slice(2)), component);
|
4571
4570
|
}
|