vbv/client/src/views/ShopView.vue

20 lines
298 B
Vue

<script setup lang="ts">
import * as log from 'loglevel';
import MainNavigationBar from '@/components/MainNavigationBar.vue';
log.debug('ShopView created');
</script>
<template>
<MainNavigationBar/>
<main class="px-8 py-8">
<h1>Shop</h1>
</main>
</template>
<style scoped>
</style>