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

14 lines
218 B
Vue
Raw Normal View History

<template>
<pricelist public />
</template>
<script>
import Pricelist from '../components/Pricelist.vue';
export default {
name: 'OuterPricelist',
components: { Pricelist },
};
</script>
<style scoped></style>