🎉 Initial commit

This commit is contained in:
Jakub Juszczak
2016-06-26 15:24:29 +02:00
commit 0820ba63b3
36 changed files with 964 additions and 0 deletions

20
src/App.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<div class="container">
<test-chart :width="100" :height="200" :player={wins:'12'} :opponent={wins:'23'}></test-chart>
</div>
</template>
<script>
import TestChart from './components/TestChart'
export default {
components: { TestChart }
}
</script>
<style>
.container {
max-width: 800px;
margin: 0 auto;
}
</style>