mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-09-12 05:53:31 +08:00
22 lines
341 B
Vue
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>
|