Skip to content

Instantly share code, notes, and snippets.

@weblee
Created September 2, 2016 12:54
Show Gist options
  • Save weblee/7c95423ba051c749282a37fcb83e5aa7 to your computer and use it in GitHub Desktop.
Save weblee/7c95423ba051c749282a37fcb83e5aa7 to your computer and use it in GitHub Desktop.
Example Vue file with Webpack Plugin
<template>
<div>
<input type="checkbox">
</div>
</template>
<script>
import "../../vendor/js/bootstrap-checkbox"
export default {
data: function() {
return {
somedata: []
}
},
ready() {
$(':checkbox').checkboxpicker()
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment