2024-03-14 19:46:05 +08:00
|
|
|
<template>
|
2024-03-15 19:32:22 +08:00
|
|
|
<div class="layout-container full">
|
|
|
|
|
<!-- 执行面板 -->
|
|
|
|
|
<exec-panel />
|
2024-03-15 00:26:53 +08:00
|
|
|
</div>
|
2024-03-14 19:46:05 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
export default {
|
|
|
|
|
name: 'execCommand'
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2024-03-15 19:32:22 +08:00
|
|
|
import ExecPanel from './components/exec-panel.vue';
|
2024-03-14 19:46:05 +08:00
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
|
|
|
|
|
</style>
|