Created
September 2, 2016 12:54
-
-
Save weblee/7c95423ba051c749282a37fcb83e5aa7 to your computer and use it in GitHub Desktop.
Example Vue file with Webpack Plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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