Giter Site home page Giter Site logo

vue-meteor's Introduction

vue-meteor

Adds mixins and methods to Vue.js for easier use with Meteor.

Installation

var Vue = require('vue')

Vue.use(require('vue-meteor'))

Examples

Updates when reactive Meteor data sources change

module.exports = {  
  dataMeteor: {
    tasks: function() {
      return Tasks.find().fetch()
    }
  },
  created: function() {
      this.$subscribe('tasks')
  }
}

Updates when reactive Vue or Meteor data sources change

module.exports = {  
  data: function() {
    return {
      taskId: '123'
    }
  },
  dataReactive: {
    tasks: function() {
      return Tasks.findOne(this.taskId)
    }
  },
  created: function() {
      this.$subscribe('tasks')
  }
}

Similar to $watch (only tracks Meteor reactive data sources)

var untrack = this.$trackMeteor(function() { // called whenever Session.get('xyz') changes
  return Session.get('xyz')
}, function(value) { // called with return value (not reactive)
  // do something
})
untrack() // stop tracking

Similar to $watch (tracks Meteor and Vue reactive data sources)

var untrack = this.$track(function() { // called whenever Session.get('xyz') or this.abc changes
  return Session.get('xyz') + this.abc // this.abc is a Vue data object
}, function(value) { // called with return value (not reactive)
  // do something
})
untrack() // stop tracking

Subscriptions that stop when component is destroyed

var subscription = this.$subscribe('tasks')

vue-meteor's People

Contributors

almini avatar

Watchers

James Cloos avatar Aaron Adams avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.