18 lines
276 B
Vue
18 lines
276 B
Vue
|
<template>
|
||
|
<v-content>
|
||
|
<PriceList />
|
||
|
</v-content>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import PriceList from "@/components/pricelist/PriceList";
|
||
|
export default {
|
||
|
name: "PriceListView",
|
||
|
components: {PriceList}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|