You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
251 B
16 lines
251 B
<template>
|
|
<router-view />
|
|
<PublicComponent />
|
|
</template>
|
|
<script setup lang="ts">
|
|
import PublicComponent from '@/components/PublicComponent/PublicComponent.vue'
|
|
</script>
|
|
|
|
<style>
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 1080px;
|
|
height: 1920px;
|
|
}
|
|
</style>
|
|
|