add exemple routing and store

This commit is contained in:
grimhilt
2023-02-24 15:47:10 +01:00
parent 75dd9afdaf
commit 0692f8caa5
20 changed files with 418 additions and 50 deletions

View File

@@ -0,0 +1,31 @@
<template>
<div>
<Header></Header>
<div>
Room
is thread
</div>
</div>
</template>
<script>
import Header from './Header.vue'
export default {
name: 'RoomView',
components: {
Header
}
}
</script>
<style scoped>
div {
background-color: #1D1D23;
color: white;
width: 100%;
}
</style>