From adc88bd9e76644badbbe006913addfa7cbe5d89c Mon Sep 17 00:00:00 2001
From: shixian.shi <shixian.shi@alibaba-inc.com>
Date: 星期四, 23 十一月 2023 20:40:15 +0800
Subject: [PATCH] Merge remote-tracking branch 'refs/remotes/origin/main' update contextual forward

---
 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