20 lines
298 B
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>
|