Standalone
Standalone Renderer
Preview a form while keeping navigation, progress, and validation controls visible.
FormForgeRenderer supports standalone and preview-style workflows where the renderer stays interactive but the parent screen owns the overall flow.
Useful props
showProgressshowSubmitsimulationpreviewPageKeyvalidateOnvalidateOnBlur
Example
<script setup lang="ts">
const selectedPageKey = ref<string | null>(null)
</script>
<template>
<FormForgeRenderer
form-key="contact"
:show-progress="true"
:show-submit="true"
:simulation="true"
:preview-page-key="selectedPageKey"
/>
</template>
Behavior notes
showProgressrenders aUProgressbar when the form has more than one visible block- navigation buttons appear when more than one block is visible
Previous,Next, andSubmitstay visible in simulation mode so a playground can mimic a real form runpreviewPageKeylocks the renderer to a single block, which is useful when you preview the block currently selected in the builder- the renderer still validates the current block before moving forward
Preview mode is not read-only by default. When
simulation is enabled, the renderer keeps the controls visible so you can test the whole navigation flow.