This commit is contained in:
dute7liang
2023-12-19 22:23:45 +08:00
commit 97daeafbe7
117 changed files with 19926 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { App } from "vue";
import { JLabel } from "@/components/JLabel";
import JGap from "@/components/JGap/JGap.vue";
import JNavBar from "@/components/JNavBar/JNavBar.vue";
/**
* 全局注册自定义组件 待完善
* @param app
*/
export function setupCustomComponents(app: App<Element>) {
app.component('JGap',JGap)
app.component('JLabel',JLabel)
app.component('JNavBar',JNavBar)
}