运行命令界面模块化

This commit is contained in:
fofolee
2022-04-08 12:18:03 +08:00
parent cfd7f2f884
commit 790c4a872c
5 changed files with 162 additions and 122 deletions

View File

@@ -1,23 +1,22 @@
<template>
<div
:style="{
whiteSpace: 'pre',
}"
>
{{ enterData }}
<div>
<CommandRunResult :action="action"></CommandRunResult>
</div>
</template>
<script>
import CommandRunResult from "components/CommandRunResult.vue";
export default {
component: { CommandRunResult },
data() {
return {
output: "",
enterData: "",
action: {
type: "fromUtools",
data: quickcommand.enterData,
},
};
},
mounted() {
this.enterData = quickcommand.enterData;
},
mounted() {},
};
</script>

View File

@@ -1,5 +0,0 @@
<template>
<div>
quickPanel
</div>
</template>