命令界面

This commit is contained in:
fofolee 2022-04-08 00:22:32 +08:00
parent 4a28130bbb
commit 001897ad48

View File

@ -1,9 +1,23 @@
<template> <template>
<div>commandPage</div> <div
:style="{
whiteSpace: 'pre',
}"
>
{{ enterData }}
</div>
</template> </template>
<script> <script>
console.log(quickcommand.enterData); export default {
data() {
export default {}; return {
output: "",
enterData: "",
};
},
mounted() {
this.enterData = quickcommand.enterData;
},
};
</script> </script>