Browse Source
* change svg parameter into namespace * fixed svg to namespace bug * change svg detecting into namespace detecting in parser * fixed eslint errordev
Jinjiang
9 years ago
committed by
Evan You
8 changed files with 38 additions and 30 deletions
@ -1,11 +1,11 @@ |
|||
export default function VNode (tag, data, children, text, elm, svg) { |
|||
export default function VNode (tag, data, children, text, elm, namespace) { |
|||
return { |
|||
tag, |
|||
data, |
|||
children, |
|||
text, |
|||
elm, |
|||
svg, |
|||
namespace, |
|||
key: data && data.key |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue