Skip to content

Instantly share code, notes, and snippets.

@SteinRobert
Created July 7, 2019 20:47
Show Gist options
  • Select an option

  • Save SteinRobert/4614cd99205d3d946a1bab4a6aeb070f to your computer and use it in GitHub Desktop.

Select an option

Save SteinRobert/4614cd99205d3d946a1bab4a6aeb070f to your computer and use it in GitHub Desktop.
<template>
<div>
<app-toggle name="toggle" id="toggle-1" :active="toggleActive"></app-toggle>
</div>
</template>
<script>
import Toggle from './Toggle'
export default {
name: 'App',
components: {
'AppToggle': Toggle
},
data () {
return {
toggleActive: true
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment