mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-12 16:13:18 -06:00
fully converted to proper bootstrap-vue, black theme styling, api routes for data retrieval,
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user