mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-12-18 18:04:28 +08:00
OutPutEditor支持下拉选择变量和函数
This commit is contained in:
@@ -160,7 +160,7 @@
|
||||
</div>
|
||||
<div class="var-list">
|
||||
<div
|
||||
v-for="(variable, index) in localFlow.outputVariables"
|
||||
v-for="(variable, index) in outputVariables"
|
||||
:key="index"
|
||||
class="var-item output-var"
|
||||
>
|
||||
@@ -198,6 +198,11 @@ export default defineComponent({
|
||||
type: Object,
|
||||
required: true,
|
||||
},
|
||||
outputVariables: {
|
||||
type: Array,
|
||||
required: true,
|
||||
default: () => [],
|
||||
},
|
||||
},
|
||||
emits: ["update:modelValue", "update:flow"],
|
||||
computed: {
|
||||
|
||||
Reference in New Issue
Block a user