Questions tagged [vueify]

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

24 questions
10
votes
1 answer

How do I get a simple Vue compilation going in Gulp?

I already use gulp in my workflow, and I don't currently use webpack or browserify, but it seems that compiling Vue 2.x components requires one or the other, there are no actively-maintained mechanisms for compiling Vue components directly as gulp…
richardtallent
  • 34,724
  • 14
  • 83
  • 123
6
votes
1 answer

Vuejs recursive component on Vueify

Based on the Vuejs Documentation examples I am trying to do a simple treeview component where I can show a Chart of Accounts without any interection (no add no drag and drop... really simple). I have made an example on FiddleJs but there works fine…
Gustavo Bissolli
  • 1,551
  • 3
  • 22
  • 36
5
votes
4 answers

Vue Vuetify: Invalid prop: custom validator check failed for prop "value". found in --->

I have form with several text fields that's giving me no issues. But I have this file field Im unable to bind to my model. Any sujestions.