This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
spellsaurus/client/src/app.vue
2020-06-28 17:57:34 +02:00

15 lines
186 B
Vue

<template>
<div id="srs">
<header>
<navbar/>
</header>
<router-view/>
</div>
</template>
<script>
export default {
name: 'app'
}
</script>