summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelianthella <git@gumi.ca>2020-12-22 22:23:05 -0500
committerHelianthella <git@gumi.ca>2020-12-22 22:23:05 -0500
commit0bcf96c9f8a36a8fe16716abf235cd90d9ef40ca (patch)
tree399bf1b71a956c73c3786e2905fce88d1a1e7026
parentf8d355c7738a52305ab9fff719019d0faffe0101 (diff)
downloadwebsite-0bcf96c9f8a36a8fe16716abf235cd90d9ef40ca.tar.gz
website-0bcf96c9f8a36a8fe16716abf235cd90d9ef40ca.tar.bz2
website-0bcf96c9f8a36a8fe16716abf235cd90d9ef40ca.tar.xz
website-0bcf96c9f8a36a8fe16716abf235cd90d9ef40ca.zip
don't duplicate the top-level <div id=app> wrapper
-rw-r--r--src/App.vue10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/App.vue b/src/App.vue
index b5f897d..435f7b2 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,10 +1,8 @@
<template>
- <div id="app">
- <Logo class="header"/>
- <Navigation class="nav"/>
- <router-view class="content"/>
- <Copyright class="footer"/>
- </div>
+ <Logo class="header"/>
+ <Navigation class="nav"/>
+ <router-view class="content"/>
+ <Copyright class="footer"/>
</template>
<style>