vue-hot-reload-api
Advanced tools
Comparing version
@@ -143,7 +143,10 @@ var Vue // late bind | ||
// reset static trees | ||
// pre 2.5, all static trees are cahced together on the instance | ||
// post 2.5.4: only v-once trees. Pure static trees are cached on the | ||
// staticRenderFns array (replaced above) | ||
if (instance._staticTrees) { | ||
// pre 2.5 staticTrees are cached per-instance | ||
instance._staticTrees = [] | ||
} else { | ||
// post 2.5 staticTrees are cached on shared options | ||
} | ||
// 2.5.0~2.5.1 | ||
if (record.Ctor.options._staticTree) { | ||
record.Ctor.options._staticTrees = [] | ||
@@ -150,0 +153,0 @@ } |
{ | ||
"name": "vue-hot-reload-api", | ||
"version": "2.2.1", | ||
"version": "2.2.2", | ||
"description": "hot reload api for *.vue components", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
9623
1.45%205
1.49%