We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c236626 commit 6c4dbceCopy full SHA for 6c4dbce
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vue-meteor-tracker",
3
- "version": "1.0.0",
+ "version": "1.0.1",
4
"description": "Use Meteor Tracker reactivity inside Vue components",
5
"main": "index.js",
6
"scripts": {
src/vue-plugin.js
@@ -7,7 +7,7 @@ function defaultSubscription(...args) {
7
}
8
9
export default {
10
- install(Vue) {
+ install(Vue, options) {
11
12
const vueVersion = parseInt(Vue.version.charAt(0));
13
@@ -18,6 +18,10 @@ export default {
18
freeze: false,
19
};
20
21
+ for(const k in options) {
22
+ Vue.config.meteor[k] = options[k];
23
+ }
24
+
25
function prepare() {
26
this._trackerHandles = [];
27
0 commit comments