25 lines
810 B
Vue
25 lines
810 B
Vue
<script setup>
|
|
//import { computed } from 'vue';
|
|
//import { useState } from 'src/composables/useState';
|
|
//import { useRouter } from 'vue-router';
|
|
|
|
//const state = useState();
|
|
//const router = useRouter();
|
|
/*const entityId = computed(function () {
|
|
return router.currentRoute.value.params.id;
|
|
});*/
|
|
</script>
|
|
<template>
|
|
<!--<q-drawer v-model="state.drawer.value" show-if-above :width="200" :breakpoint="500">
|
|
<q-scroll-area class="fit text-grey-8">
|
|
<router-link :to="{ path: '/customer/list' }">
|
|
<q-icon name="arrow_back" size="md" color="primary" />
|
|
</router-link>
|
|
<div>Customer ID: {{ entityId }}</div>
|
|
</q-scroll-area>
|
|
</q-drawer>-->
|
|
<q-page-container>
|
|
<router-view></router-view>
|
|
</q-page-container>
|
|
</template>
|