v2.0.0-rc.2
Pre-release
Pre-release
This release candidate adds basic support for using multiple Vue apps or off-document components on a page.
Currently the following is supported:
- adding/removing tags (without a
vmid
) is fully supported - there is partial support for using
vmid
across apps:- app 2 can override a tag with the same
vmid
from app 1 (vice versa is not possible) - if you remove a
vmid
in app 2 then vue-meta wont automatically load the correspondingvmid
from app 1
- app 2 can override a tag with the same
- applying attributes are not supported across apps, its recommended to only have one app which adds attributes to a tag
- you could eg have one app to add html attributes, one to add head and one to add bod but you cant have two apps which both add html attributes as the second app will fully overwrite the attributes of the first app
Features
- add basic support for multiple apps on one page (024e7c5)
Bug Fixes
- detect and apply changes triggered before or during initialization (34c6ad9)