Initial commit

This commit is contained in:
GeekROS
2024-03-03 22:59:18 +08:00
commit cec0aae8e3
69 changed files with 2687 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<template>
<router-view ref="routerView" v-slot="{Component}">
<component :is="Component" :cnc="appData" />
</router-view>
</template>
<script lang="ts">
import {ref, defineComponent} from "vue";
import {ElLoading} from "element-plus";
export default defineComponent({
name: "App",
emits: [],
props: [],
components: {},
setup(props, context) {
const appData: any = ref({
loading: ElLoading.service({
lock: true,
background: "rgba(0, 0, 0, .5)",
customClass: "desktop",
}),
data: false
});
return {
props,
appData
}
}
});
</script>
<style>
@import "./assets/css/base.scss";
</style>