10 lines
306 B
Vue
10 lines
306 B
Vue
<script setup>
|
|
import ParkingDescriptor from './ParkingDescriptor.vue';
|
|
import ParkingSummary from './ParkingSummary.vue';
|
|
</script>
|
|
<template>
|
|
<QPopupProxy style="max-width: 10px">
|
|
<ParkingDescriptor v-if="$attrs.id" v-bind="$attrs" :summary="ParkingSummary" />
|
|
</QPopupProxy>
|
|
</template>
|