Created
February 28, 2017 12:59
-
-
Save apertureless/b32efbf15e70cfe28546e6c0d7cbed73 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<template> | |
<div id="app"> | |
<div class="container"> | |
<div class="Chart__list"> | |
<div class="Chart"> | |
<h2>Linechart</h2> | |
<line-example></line-example> | |
</div> | |
</div> | |
</div> | |
</div> | |
</template> | |
<script> | |
import LineExample from './components/LineChart.js' | |
export default { | |
name: 'app', | |
components: { | |
LineExample | |
} | |
} | |
</script> | |
<style> | |
#app { | |
font-family: 'Avenir', Helvetica, Arial, sans-serif; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
text-align: center; | |
color: #2c3e50; | |
margin-top: 60px; | |
} | |
.container { | |
max-width: 800px; | |
margin: 0 auto; | |
} | |
</style> | |
CopyRaw |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does CopyRaw need to be in here?