Evan You
Evan You
@TerenceZ in this case the `$parent` points to the repeater instance. If you want to avoid that just use `` instead.
@PaulKruijt are you trying `v-ref` on transcluded components?
This was somehow overlooked when I designed the options usage! For now you can use a computed property to loop through the options and find the text that matches the...
@egoist if they use TS they don't even need Babel though
Hmm there seems to be a few problems here: 1. Exported component should not specify its own `el`. The component should be reusable. `el` option is only needed if you...
I seems you are jumping into Vueify before understanding some basic concepts. Make sure to read through all the options: http://vuejs.org/api/options.html And consult the example: https://github.com/vuejs/vueify-example
@holic yes, that should happen in the process
@righter , yeah, most likely 1.0 before end of 2015.
Together with 1.0.0 we will also release a version called 1.0.0-migration, which serves the same purpose, but updated with all changes between alpha and 1.0.0, if any. That version should...
It's easier to just take snapshots by cloning the object on each change, and just replace the object with a saved snapshot when you need to undo something.