Migrate from Old Version
Vue Support
@wsfe/vue-tree
is the upgraded version of @wsfe/ctree
. The new version changed the exported module names and Less/CSS prefixes.
Vue support info:
- @wsfe/vue-tree 4.x: Vue3
- @wsfe/vue-tree 3.x: Supports Vue2 and Vue3 using
vue-demi
, but it's not under maintenance due to compatibility issues - @wsfe/ctree: Vue2. Severe bug fixes only
Migration
To migrate from @wsfe/ctree
or @wsfe/vue-tree
3.x to @wsfe/vue-tree
4.x, follow these steps:
- Update all Less variables and CSS related class prefix from
ctree
tovtree
- Change the prefix of exported modules from
C
toV
typescript
import CTree, { CTreeSearch, CTreeDrop } from '@wsfe/ctree'
import VTree, { VTreeSearch, VTreeDrop } from '@wsfe/vue-tree'