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>
|
|
|
|
|
|
|
|
<script>
|
2021-03-18 16:23:57 +00:00
|
|
|
import Pricelist from '../components/Pricelist.vue';
|
2021-02-13 13:11:25 +00:00
|
|
|
export default {
|
|
|
|
name: 'PricelistPage',
|
2021-03-18 16:23:57 +00:00
|
|
|
components: { Pricelist },
|
|
|
|
};
|
2021-02-13 13:11:25 +00:00
|
|
|
</script>
|
|
|
|
|
2021-03-18 16:23:57 +00:00
|
|
|
<style scoped></style>
|