This commit is contained in:
yuyongdong 2024-09-03 14:13:29 +08:00
parent 05c94a914d
commit 27652ca814
2 changed files with 29 additions and 1 deletions

View File

@ -0,0 +1,27 @@
<template>
<div class="content">
<div class="content-header">
</div>
content
</div>
</template>
<script setup>
import { ref } from "vue"
</script>
<style lang="scss" scoped>
.content {
width: 1120px;
margin: 0 auto;
color: #fff;
.content-header {
margin-top: 50px;
width: 100%;
height: 120px;
background: #2d2738;
}
}
</style>

View File

@ -1,11 +1,12 @@
<template>
<div class="staking">
staking
<Staking />
</div>
</template>
<script setup>
import { ref } from "vue"
import Staking from "@/components/staking/index.vue"
</script>