Skip to content

Instantly share code, notes, and snippets.

@DamianMullins
Created April 20, 2021 09:19
Show Gist options
  • Save DamianMullins/3feab6fbe5d3434170ede47e8f825ef8 to your computer and use it in GitHub Desktop.
Save DamianMullins/3feab6fbe5d3434170ede47e8f825ef8 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"
@change="listeners.radioChanged"> <!-- Change event -->
<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