fully converted to proper bootstrap-vue, black theme styling, api routes for data retrieval,

This commit is contained in:
Xevion
2020-08-04 18:04:52 -05:00
parent a2aef9afc3
commit 5fdbe86eae
15 changed files with 393 additions and 103 deletions

View File

@@ -1,5 +1,23 @@
<template>
<div id="app">
<router-view/>
</div>
<div id="app">
<router-view/>
<b-container fluid=true class="py-5 px-5">
<b-row>
<b-col lg="3" xl="2" md="12">
<SeasonList></SeasonList>
</b-col>
</b-row>
</b-container>
</div>
</template>
<script>
import SeasonList from './components/SeasonList.vue';
export default {
name: 'App',
components: {
SeasonList,
},
};
</script>