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