@logux/vuex
Advanced tools
Comparing version 0.6.0 to 0.6.1
# Change Log | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
## 0.6.1 | ||
* Fix component render with temporary no children | ||
## 0.6.0 | ||
@@ -5,0 +8,0 @@ * Add `tag` property for component to wrap multiple children and single text |
@@ -74,3 +74,3 @@ import { | ||
// for arrays and single text nodes | ||
if (vnode.length > 1 || !vnode[0].tag) { | ||
if (vnode && (vnode.length > 1 || !vnode[0].tag)) { | ||
return h(this.tag, {}, vnode) | ||
@@ -77,0 +77,0 @@ } |
{ | ||
"name": "@logux/vuex", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "Vuex compatible API for Logux", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
50225