Denis Karabaza

Results 31 comments of Denis Karabaza

Explicit is better than implicit. And I can not come up with the use case where `` fits better then named slots.

@mattiasottosson yes, `v-repeat` is deprecated in favor of `v-for`. There's also syntax for manually specifying key: `v-for="(key, value) in object"` and `v-for="(index, value) in list"`. We also don't use vuejs/Discussion...

@DelightedD0D please note the date, this was before 2.0.

Are you trying to put this into `ready` hook or something? Your issue is with `this` inside callback does not point to the vue instance. Here is what you could...

Check the console for errors. Demo: https://jsfiddle.net/simplesmiler/Lrk9sxjf/30/ Also, `vuejs/Discussion` is deprecated. You can find help on [forum](https://forum.vuejs.org/) or [gitter](https://gitter.im/vuejs/vue).

Lets look a few month into the future. 1.0.0 is already out, 1.1.0 is upcoming, but my project is still sitting on the latest 0.12.10, because I didn't have time...

@mark-hahn 1.0.0-alpha is compatible with 0.12, but gives hints on things you need to fix before moving to 1.0.0. That's the point of alpha as I see it. And I...

@yyx990803 that will do the trick, thanks!

@mark-hahn there is no field for interpretation and discussion. > You can consider 1.0.0-alpha a continuation of 0.12 but with deprecation warnings; its purpose is to allow you to use...

This is not the way to do it. Instead you should: 1. Watch the viewmodel and update state of the plugin. 2. Listen for the [events](https://alex-d.github.io/Trumbowyg/documentation.html#events) the plugin emits and...