Skip to content

Instantly share code, notes, and snippets.

@vuejsdevelopers
Last active May 4, 2017 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vuejsdevelopers/c1e5d430002b8867d7b47d144c9019ae to your computer and use it in GitHub Desktop.
Save vuejsdevelopers/c1e5d430002b8867d7b47d144c9019ae to your computer and use it in GitHub Desktop.
7 Ways To Define A Component Template in Vue.js - Snippet 03
Vue.component('my-checkbox', {
template: '#checkbox-template',
data() {
return {
checked: false,
title: 'Check me'
}
},
methods: {
check() {
this.checked = !this.checked;
}
}
});
<script type="text/x-template" id="checkbox-template">
<div class="checkbox-wrapper" @click="check">
<div :class="{ checkbox: true, checked: checked }"></div>
<div class="title"></div>
</div>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment