+ Moved client to subfolder and added db communication
This commit is contained in:
31
client/src/app.vue
Normal file
31
client/src/app.vue
Normal file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<div id="srs">
|
||||
|
||||
<navigation/>
|
||||
<router-view/>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
import navbar from "./components/global/navbar/navbar";
|
||||
|
||||
export default {
|
||||
name: 'app',
|
||||
components: {
|
||||
'navigation': navbar
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
|
||||
#srs {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user