* feat: add an appId to tags to support multiple apps
* feat: show warning on calling () on non-vuemeta components
* feat: always use appId ssr for server-generated apps
* test: update tests for appId
* chore: update circleci to only run audit for dependencies
* fix: dont set data-vue-meta attribute on title
it has no use on the client as we use document.title there. Which also means the appId listed would be wrong once the title is updated by another app then the ssr app
* chore: remove unused import
* chore: improve not supported message
The issue with using requestAnimationFrame is that its meant to be used for visual effects. Therefore when a tab is hidden the browser might decide to not perform animation frame updates until the tab becomes visible, this is confirmed behaviour for Firefox. Due to this title updates would not be triggered while document titles are normally visible in the tabs title. For now we batch updates by setting/clearing timeouts with a 10ms interval
Resolves: #313