12 lines
164 B
Vue
12 lines
164 B
Vue
<template>
|
|
<main class="home"></main>
|
|
</template>
|
|
|
|
<script setup></script>
|
|
|
|
<style lang="scss">
|
|
main.home {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
</style>
|