November 2017
Beginner to intermediate
398 pages
8h 42m
English
A Meteor collection is a reactive list of objects, similar to a MongoDB collection (in fact, it uses MongoDB under the hood).
We need to use a Vue plugin to integrate the Meteor collections into our Vue app in order to update it automatically:
meteor npm i -S vue-meteor-tracker
import VueMeteorTracker from 'vue-meteor-tracker' Vue.use(VueMeteorTracker)
The app is now aware of the Meteor collection and we can use them in our components, as we will do in a moment.
Read now
Unlock full access