In my app there's no App.vue component assigned to the #app element. Instead, in my index.html, I have a <router-view> element which displays some Home.vue component by default or whatever other component depending on the route.
However I want to display a certain component (informing about user online status) at all times regardless of the current route. But how can I achieve this if it's not possible to call a component from index.html? Or is it possible?
index.html:
<!DOCTYPE html>
<html lang="en">
<head><meta charset="utf-8"></head>
<body>
<div id="app">
<!-- Component handling user status (connected / not connected) would go here -->
<router-view></router-view>
</div>
<script src="dist/build.js"></script>
</body>
</html>