mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
28 lines
435 B
Vue
28 lines
435 B
Vue
<template>
|
|
<div class="home">
|
|
<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>
|
|
.home {
|
|
padding: 1rem;
|
|
|
|
max-height: 100%;
|
|
}
|
|
</style>
|