Created
December 11, 2018 02:57
-
-
Save Morgul/6758efeb6e6e4980c727ceda81e583d1 to your computer and use it in GitHub Desktop.
Vetur Bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!---------------------------------------------------------------------------------------------------------------------> | |
<!-- App --> | |
<!---------------------------------------------------------------------------------------------------------------------> | |
<template> | |
<div id="app"> | |
<site-header></site-header> | |
<router-view></router-view> | |
</div> | |
</template> | |
<!---------------------------------------------------------------------------------------------------------------------> | |
<style lang="scss"> | |
#app { | |
height: calc(100% - 100px); | |
overflow: auto; | |
margin-top: 100px; | |
padding-top: 10px; | |
} | |
</style> | |
<!---------------------------------------------------------------------------------------------------------------------> | |
<script> | |
//------------------------------------------------------------------------------------------------------------------ | |
// Components | |
import SiteHeader from './components/header/index.vue'; | |
//------------------------------------------------------------------------------------------------------------------ | |
export default { | |
components: { | |
SiteHeader | |
} | |
} | |
</script> | |
<!---------------------------------------------------------------------------------------------------------------------> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment