16 lines
205 B
Vue
16 lines
205 B
Vue
|
<template>
|
||
|
<Pricelist />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Pricelist from '../components/Pricelist.vue'
|
||
|
export default {
|
||
|
name: 'PricelistPage',
|
||
|
components: {Pricelist}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|