flaschengeist-frontend/src/views/contents/PriceListView.vue

18 lines
276 B
Vue

<template>
<v-content>
<PriceList />
</v-content>
</template>
<script>
import PriceList from "@/components/pricelist/PriceList";
export default {
name: "PriceListView",
components: {PriceList}
}
</script>
<style scoped>
</style>