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

15 lines
323 B
Vue
Raw Normal View History

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',
components: { CalculationTable },
2021-03-30 20:32:18 +00:00
setup() {
return {};
},
});
</script>