* 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 addNavGuards check adds the navigation guards when an afterNavigation callback is defined but refreshOnceOnNavigation was not set. As the afterNavigation callback is defined in metaInfo which can be dependent on user data we need to wait until all components are fully mounted before checking if a afterNavigation callback was defined
Fixes: #348