{{ props.name }} is {{ props.age }} years old.
``` ## Python comparison This is similar to passing constructor arguments or function arguments. ```python render_user_card(name=username, age=34) ``` ## Your real example In FlexibilityTable: ```ts interface FlexibilityTableProps { title: string; uploadMode?: 'fsp' | 'tso' | 'both' | 'none'; } const props = withDefaults(defineProps