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

16 lines
277 B
Vue
Raw Normal View History

<template>
<Pricelist />
</template>
2021-03-14 16:41:43 +00:00
<script lang="ts">
import { defineComponent } from 'vue';
import Pricelist from '../components/Pricelist.vue';
2021-03-14 16:41:43 +00:00
export default defineComponent({
name: 'PricelistPage',
components: { Pricelist },
2021-03-14 16:41:43 +00:00
});
</script>
<style scoped></style>