ProjetRIOT/components/school-info.riot

17 lines
491 B
Plaintext
Raw Normal View History

2023-03-28 10:22:35 +02:00
<school-info style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: #000000DD;">
<div style="position: absolute; top: 10%; left: 25%; width: 50%; height: 80%; background: #FFFFFF">
<button onclick={closeWindow}></button>
2023-03-25 20:29:49 +01:00
</div>
<script>
export default {
onMounted() {
2023-03-26 17:40:15 +02:00
console.log("Test!")
2023-03-28 10:22:35 +02:00
},
closeWindow() {
2023-03-25 20:29:49 +01:00
}
}
</script>
</school-info>