Skip to content

Instantly share code, notes, and snippets.

@DamianMullins
Created April 20, 2021 09:17
Show Gist options
  • Save DamianMullins/fbc4ca5eed770df2723c974db18297ec to your computer and use it in GitHub Desktop.
Save DamianMullins/fbc4ca5eed770df2723c974db18297ec to your computer and use it in GitHub Desktop.
<template functional>
<div>
<input
:id="props.labelId"
type="radio"
:checked="props.isSelected"
:name="props.groupName"
:value="props.value">
<label
:for="props.labelId"
@click="listeners.radioClicked"> <!-- Click event -->
{{ props.name }}
</label>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment