update desktop

This commit is contained in:
GeekROS
2023-08-28 22:37:55 +08:00
parent e824e790a2
commit dfecbdee01
60 changed files with 3318 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<template>
<div class="plugin-view" :class="props.cnc.navigation.select">
<el-empty class="cnc" description="plugin" :image-size="30" />
</div>
</template>
<script lang="ts">
import {defineComponent, onBeforeMount, onMounted, onBeforeUnmount, onUnmounted} from "vue";
import * as icons from "@element-plus/icons";
export default defineComponent({
name: "PluginMain",
emits: [],
props: ["cnc"],
components: {},
setup(props, context) {
onBeforeMount(() => {});
onMounted(() => {});
onBeforeUnmount(() => {});
onUnmounted(() => {});
return {
props,
icons
}
}
});
</script>
<style scoped>
.plugin-view{
width: 100%;
height: 100%;
background-color: rgba(30, 31, 34, 1);
display: none;
}
.plugin-view.plugin{
display: block;
}
</style>