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

14 lines
247 B
Vue
Raw Normal View History

<template>
2021-04-13 14:20:32 +00:00
<calculation-table public />
</template>
<script>
2021-04-13 14:20:32 +00:00
import CalculationTable from '../components/CalculationTable.vue';
export default {
name: 'OuterPricelist',
2021-04-13 14:20:32 +00:00
components: { CalculationTable },
};
</script>
<style scoped></style>