diff options
author | Helianthella <git@gumi.ca> | 2020-12-22 22:23:05 -0500 |
---|---|---|
committer | Helianthella <git@gumi.ca> | 2020-12-22 22:23:05 -0500 |
commit | 0bcf96c9f8a36a8fe16716abf235cd90d9ef40ca (patch) | |
tree | 399bf1b71a956c73c3786e2905fce88d1a1e7026 | |
parent | f8d355c7738a52305ab9fff719019d0faffe0101 (diff) | |
download | website-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.vue | 10 |
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> |