stabilize

This commit is contained in:
2026-02-10 23:25:42 +03:00
parent d9cc66e35c
commit 091565f020
10 changed files with 664 additions and 102 deletions

View File

@@ -46,16 +46,6 @@
</div>
</div>
<div class="row justify-end q-mt-md">
<q-btn
color="primary"
@click="execute('Calc')"
:loading="running"
size="lg"
icon="calculate"
label="Calculate"
/>
</div>
</div>
</div>
</template>
@@ -63,7 +53,7 @@
<script setup lang="ts">
import { runtime } from '../components/s8n-runtime';
const { execute, running, error, duration, outputs, inputs } = runtime.createExecutor<
const { execute, statusCode, running, error, duration, outputs, inputs } = runtime.createExecutor<
{
operator: string;
args: number[];
@@ -75,6 +65,16 @@ const { execute, running, error, duration, outputs, inputs } = runtime.createExe
operator: 'add',
args: [0, 0],
});
defineExpose({
execute,
running,
error,
duration,
outputs,
inputs,
statusCode,
});
</script>
<style lang="scss" scoped>