2023-03-05 13:23:23 +01:00
|
|
|
<home>
|
2023-03-06 17:09:06 +01:00
|
|
|
<style>
|
|
|
|
#main-container {
|
2023-03-07 21:51:35 +01:00
|
|
|
position: relative;
|
2023-03-06 17:09:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2023-03-07 21:51:35 +01:00
|
|
|
justify-content: space-around;
|
2023-03-06 17:09:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#main-container
|
2023-03-09 11:52:52 +01:00
|
|
|
#right, #left generalytics, #left etablanalytics, #left loc {
|
2023-03-06 17:09:06 +01:00
|
|
|
box-shadow: 0px 0px 9px 1px black;
|
|
|
|
background: #7A90A4;
|
2023-03-07 21:51:35 +01:00
|
|
|
}
|
2023-03-06 17:09:06 +01:00
|
|
|
|
2023-03-07 21:51:35 +01:00
|
|
|
#main-container
|
|
|
|
#right {
|
|
|
|
align-self: flex-start;
|
2023-03-08 01:56:38 +01:00
|
|
|
margin-right: 3vw;
|
2023-03-06 17:09:06 +01:00
|
|
|
}
|
2023-03-07 19:09:41 +01:00
|
|
|
|
|
|
|
#main-container
|
2023-03-07 21:51:35 +01:00
|
|
|
#left {
|
2023-03-07 19:09:41 +01:00
|
|
|
display: flex;
|
2023-03-07 21:51:35 +01:00
|
|
|
flex-direction: column;
|
2023-03-07 19:09:41 +01:00
|
|
|
justify-content: center;
|
2023-03-07 21:51:35 +01:00
|
|
|
align-self: center;
|
2023-03-07 19:09:41 +01:00
|
|
|
}
|
2023-03-07 21:51:35 +01:00
|
|
|
|
2023-03-08 01:56:38 +01:00
|
|
|
#main-container
|
|
|
|
#left
|
|
|
|
generalytics {
|
2023-03-09 11:52:52 +01:00
|
|
|
margin-bottom: 1.3vw;
|
|
|
|
margin-top: 1.3vw;
|
2023-03-08 01:56:38 +01:00
|
|
|
}
|
2023-03-06 17:09:06 +01:00
|
|
|
</style>
|
|
|
|
|
2023-03-08 01:56:38 +01:00
|
|
|
<script>
|
|
|
|
import * as riot from "riot";
|
2023-03-09 11:52:52 +01:00
|
|
|
import start from "../components/global/api/api.js"
|
|
|
|
|
|
|
|
export default {
|
|
|
|
onMounted() {
|
|
|
|
start()
|
|
|
|
}
|
|
|
|
}
|
2023-03-08 01:56:38 +01:00
|
|
|
|
|
|
|
riot.mount("selector", document.getElementById("right"))
|
2023-03-08 12:32:53 +01:00
|
|
|
riot.mount("loc", document.getElementById("left"))
|
2023-03-08 01:56:38 +01:00
|
|
|
riot.mount("generalytics", document.getElementById("left"))
|
|
|
|
riot.mount("etablanalytics", document.getElementById("left"))
|
|
|
|
</script>
|
|
|
|
|
2023-03-06 17:09:06 +01:00
|
|
|
<div id="main-container">
|
|
|
|
<div id="right">
|
|
|
|
<selector />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="left">
|
2023-03-09 11:52:52 +01:00
|
|
|
<loc />
|
2023-03-06 17:09:06 +01:00
|
|
|
<generalytics />
|
|
|
|
<etablanalytics />
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-03-05 13:23:23 +01:00
|
|
|
</home>
|