Skip to content

Instantly share code, notes, and snippets.

@apertureless
Created February 28, 2017 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apertureless/b32efbf15e70cfe28546e6c0d7cbed73 to your computer and use it in GitHub Desktop.
Save apertureless/b32efbf15e70cfe28546e6c0d7cbed73 to your computer and use it in GitHub Desktop.
<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
@MadMikeyB
Copy link

Does CopyRaw need to be in here?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment