2024-07-05 11:49:29 +02:00
|
|
|
<template>
|
|
|
|
<v-app>
|
|
|
|
<v-main>
|
2024-07-08 13:18:54 +02:00
|
|
|
<HeaderBar />
|
2024-07-08 14:44:50 +02:00
|
|
|
<div class="ma-8">
|
2024-07-08 13:18:54 +02:00
|
|
|
<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">
|
2024-07-08 13:18:54 +02:00
|
|
|
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>
|
2024-07-08 14:44:50 +02:00
|
|
|
|
|
|
|
|
2024-07-08 13:18:54 +02:00
|
|
|
</style>
|