23 lines
439 B
Vue
23 lines
439 B
Vue
<template>
|
|
<v-app>
|
|
<v-main>
|
|
<HeaderBar />
|
|
<div class="ma-8">
|
|
<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>
|
|
|
|
|
|
</style>
|