Zmiany w wyglądzie, zmiana pozycji opcji

This commit is contained in:
2020-08-03 21:00:03 +02:00
parent 2519773931
commit ab778712e6
9 changed files with 455 additions and 403 deletions
+27
View File
@@ -0,0 +1,27 @@
<template>
<div class="stations-view">
<List />
</div>
</template>
<script lang="ts">
import { Vue, Component } from "vue-property-decorator";
// import Options from "@/components/ui/Options.vue";
import List from "@/components/ui/List.vue";
@Component({
components: { List },
})
export default class Home extends Vue {
mounted() {}
}
</script>
<style lang="scss" scoped>
.stations-view {
padding: 1rem 0;
max-height: 100%;
}
</style>