From c408a8847d4257f7a45cac54b512a791f450b3f4 Mon Sep 17 00:00:00 2001
From: 游雁 <zhifu.gzf@alibaba-inc.com>
Date: 星期四, 23 十一月 2023 23:24:57 +0800
Subject: [PATCH] merge
---
web-pages/src/globalComponents.js | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/web-pages/src/globalComponents.js b/web-pages/src/globalComponents.js
new file mode 100644
index 0000000..53fb12d
--- /dev/null
+++ b/web-pages/src/globalComponents.js
@@ -0,0 +1,19 @@
+// 缁勪欢
+import uiJessibuca from '@/components/ui-jessibuca/index.vue'
+import uiScrollbar from '@/components/ui-scrollbar/index.vue'
+
+const components = {
+ // 缁勪欢
+ uiJessibuca,
+ uiScrollbar
+}
+
+const install = function (Vue, opts = {}) {
+ Object.keys(components).forEach((name) => {
+ Vue.component(name, components[name])
+ })
+}
+
+export default {
+ install
+}
--
Gitblit v1.9.1