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.

25 lines
300 B

4 months ago
<template>
4 months ago
<view class="bg">
<headerVue />
</view>
4 months ago
</template>
<script>
4 months ago
import headerVue from "@/components/header.vue"
export default {
components: {
headerVue
},
data() {
return {
}
}
}
4 months ago
</script>
4 months ago
<style lang="scss" scoped>
.bg {
padding-bottom: 200rpx;
}
4 months ago
</style>