meteor-vue icon indicating copy to clipboard operation
meteor-vue copied to clipboard

Vue for Meteor

Results 7 meteor-vue issues
Sort by recently updated
recently updated
newest added

Since I can't reopen #6 for whatever reason, this.

Look at this sample ``` var vm = new Vue({ el: '#vue-demo', data: function() { listId: 1 }, sync: { items: function() { return Lists.find({listId: this.listId}) } } } ```...

I had some experience with Meteor a year ago, and now have an app I'd like to develop with it. Vue seems like the right choice for it, but I...

Hi guys, I'm currently struggling to find a way of passing the `_id` property to my `pathFor` helper using Iron Router with Vue. When not using Vue the `pathFor` tag...

I followed this tutorial https://www.meteor.com/tutorials/blaze/temporary-ui-state. I tried ``` js sync: { incompleteCount: function () { return Tasks.find({checked: {$ne: true}}).count(); } } ``` ``` html Todo List ({{incompleteCount}}) ``` when `incompleteCount`...

hi i have this in my model sync: { 'data3': function() { return Posts.find(); } and in my html li v-repeat="post: data3" v-on="click:data3.$remove($index)" when i click the record is gone...

I have this issue with meteor-vue. http://stackoverflow.com/questions/28890672/meteor-collection-fetch-returns-empty-array-but-is-subscribed I get an empty array, only the second time i refresh i get the data. And I wait for ready