Vueify is a Browserify transform for Vue.js components, with scoped CSS and component hot-reloading.
Vueify is a browserify transform that allows you build single file Vue.js components with browserify, making it possible to write Vue.js components in the following format:
<style>
  .red {
    color: #f00;
  }
</style>
<template>
  <h1 class="red">{{msg}}</h1>
</template>
<script>
export default {
  data () {
    return {
      msg: 'Hello world!'
    }
  }
}
</script>
You can find the documentation on Vueify's GitHub page: https://github.com/vuejs/vueify
 
     
    