Alisa/web/src/App.vue

26 lines
518 B
Vue
Raw Normal View History

2024-07-05 11:49:29 +02:00
<template>
<v-app>
<v-main>
<HeaderBar />
<div class="categoryContainer">
<CategoryContainer licenseGroupName="Jetbrains Ultimate"/>
<CategoryContainer licenseGroupName="Microsoft"/>
</div>
2024-07-05 11:49:29 +02:00
</v-main>
</v-app>
</template>
<script setup lang="ts">
import HeaderBar from './components/HeaderBar.vue';
import CategoryContainer from './components/CategoryContainer.vue';
2024-07-05 12:34:49 +02:00
2024-07-05 11:49:29 +02:00
</script>
2024-07-05 14:37:10 +02:00
<style scoped>
.categoryContainer {
margin-left: 5%;
margin-top: 5%;
}
</style>