Closed MaksimKlepikov closed 7 years ago
In meteor example have missed extends: Supply If we try to use mixins: [use(Resource)]. Without this we have error
extends: Supply
mixins: [use(Resource)]
"TypeError: resource.grasp is not a function"
And we need to add this in our supply file
import VueTracker from 'vue-meteor-tracker'; Vue.use(VueTracker);
Without this we have error
"TypeError: this.$subscribe is not a function"
I spent some time to solve this problem, so I think it will be useful
In meteor example have missed
extends: Supply
If we try to usemixins: [use(Resource)]
. Without this we have errorAnd we need to add this in our supply file
Without this we have error
I spent some time to solve this problem, so I think it will be useful