Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 331 Bytes

File metadata and controls

17 lines (13 loc) · 331 Bytes

Upgrade Guide

1.0.x -> 2.0.0

level moved into node

The level is in node vm in 1.0.*. It has been moved into node since 2.0.0. You may use it in the slot like following:

Tree
  div(slot-scope="{data, store, level}") {{level}}

Change to:

Tree
  div(slot-scope="{data, store}") {{data.level}}