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.
17 lines
487 B
17 lines
487 B
<template>
|
|
<div class="bg-black w-full max-w-[1440px]">
|
|
<!-- <router-link to="/">首页</router-link>
|
|
<router-link to="/TableBlock">block</router-link>
|
|
<hr /> -->
|
|
<router-view></router-view>
|
|
</div>
|
|
<div
|
|
class="w-full flex items-center justify-center bg-black-19191A desktop:mt-[108px] mobile:mt-[48px]"
|
|
>
|
|
<Footer />
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import Footer from '@src/components/footer.vue'
|
|
</script>
|
|
<style scoped></style>
|
|
|