2021-03-30 20:32:18 +00:00
|
|
|
<template>
|
2021-04-13 14:20:32 +00:00
|
|
|
<calculation-table nodetails />
|
2021-03-30 20:32:18 +00:00
|
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-04-13 14:20:32 +00:00
|
|
|
import CalculationTable from '../components/CalculationTable.vue';
|
2021-03-30 20:32:18 +00:00
|
|
|
export default defineComponent({
|
|
|
|
name: 'InnerPricelist',
|
2021-04-14 16:53:17 +00:00
|
|
|
components: { CalculationTable },
|
2021-03-30 20:32:18 +00:00
|
|
|
setup() {
|
|
|
|
return {};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|