Tried to separate out template from Vue Component as below but it does not work. Referencing only vue.js file and not browsify.
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>
Or any alternate way to separate out template from vue component.
 
                        
You define X-Templates in your HTML file. See below for a brief demo