20 lines
246 B
Vue
20 lines
246 B
Vue
<script setup>
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
*, *::before, *::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.particulars-detail-popup {
|
|
background: rgba(0, 0, 0, 0.7) !important;
|
|
}
|
|
</style>
|