uTools-quickcommand/src/pages/RunCodePage.vue
2022-04-13 16:49:47 +08:00

22 lines
341 B
Vue

<template>
<div>
<CommandEditor ref="commandEditor" :action="action"></CommandEditor>
</div>
</template>
<script>
import CommandEditor from "components/CommandEditor";
export default {
components: { CommandEditor },
data() {
return {
action: {
type: "run",
data: {},
},
};
},
};
</script>