2021-02-13 13:11:25 +00:00
|
|
|
<template>
|
2021-03-18 16:23:57 +00:00
|
|
|
<Pricelist />
|
2021-02-13 13:11:25 +00:00
|
|
|
</template>
|
|
|
|
|
2021-03-14 16:41:43 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-03-18 16:23:57 +00:00
|
|
|
import Pricelist from '../components/Pricelist.vue';
|
2021-03-14 16:41:43 +00:00
|
|
|
|
|
|
|
export default defineComponent({
|
2021-02-13 13:11:25 +00:00
|
|
|
name: 'PricelistPage',
|
2021-03-18 16:23:57 +00:00
|
|
|
components: { Pricelist },
|
2021-03-14 16:41:43 +00:00
|
|
|
});
|
2021-02-13 13:11:25 +00:00
|
|
|
</script>
|
|
|
|
|
2021-03-18 16:23:57 +00:00
|
|
|
<style scoped></style>
|