21 lines
323 B
Vue
21 lines
323 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="homePageFramework">
|
|
<slot name="left"/>
|
|
<slot name="default"/>
|
|
<slot name="right"/>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
div.homePageFramework{
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
}
|
|
</style>
|