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

15 lines
284 B
Vue
Raw Normal View History

2021-03-30 20:32:18 +00:00
<template>
<pricelist />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import Pricelist from '../components/Pricelist.vue';
export default defineComponent({
name: 'InnerPricelist',
components: { Pricelist },
setup() {
return {};
},
});
</script>