25 lines
518 B
Vue
25 lines
518 B
Vue
<template>
|
|
<v-app>
|
|
<v-main>
|
|
<HeaderBar />
|
|
<div class="categoryContainer">
|
|
<CategoryContainer licenseGroupName="Jetbrains Ultimate"/>
|
|
<CategoryContainer licenseGroupName="Microsoft"/>
|
|
</div>
|
|
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import HeaderBar from './components/HeaderBar.vue';
|
|
import CategoryContainer from './components/CategoryContainer.vue';
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.categoryContainer {
|
|
margin-left: 5%;
|
|
margin-top: 5%;
|
|
}
|
|
</style>
|