Data binding allows users to render dynamic data as text or bind variables to components. This feature has three different aspects:
Rendering variables
---
theAnswer: 42
---
The answer to life, the universe, and everything is {{ frontmatter.theAnswer }}.
Props binding
---
theAnswer: 42
---
::question{:answer="frontmatter.theAnswer"}
::
Renderer Data
<template>
<Comark markdown="Render {{ data.variable }} from runtime data" :data="{ variable: "Runtime Variable" }" />
</template>
Data binding allows users to render dynamic data as text or bind variables to components. This feature has three different aspects:
Rendering variables
Props binding
Renderer Data