flaschengeist-frontend/src/plugins/pricelist/pages/PricelistP.vue

16 lines
277 B
Vue

<template>
<Pricelist />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import Pricelist from '../components/Pricelist.vue';
export default defineComponent({
name: 'PricelistPage',
components: { Pricelist },
});
</script>
<style scoped></style>