PJob-prisma/pages/index.vue

25 lines
385 B
Vue
Raw Normal View History

2024-04-12 10:23:44 +00:00
<style scoped>
.Banner {
width: 120%;
height: 400px;
margin: auto;
padding: auto;
left: -25%;
}
</style>
<template>
<div>
<n-flex style="margin-top: 10px" vertical justify="center">
<Header />
<Banner />
<Jobshow />
<Footer />
</n-flex>
</div>
</template>
<script setup lang="ts">
useHeadSafe({ title: "校园兼职信息" });
</script>