25 lines
500 B
Vue
25 lines
500 B
Vue
<style scoped>
|
|
.AdminSelection {
|
|
width: 90%;
|
|
padding: auto;
|
|
}
|
|
</style>
|
|
|
|
<template>
|
|
<div>
|
|
<div style="margin-left: 5%; float: left">
|
|
<a target="_blank" href="/"><img src="/favicon.ico" /></a>
|
|
</div>
|
|
<h1 style="text-align: center">校园兼职后台</h1>
|
|
<AdminSelection />
|
|
|
|
<Footer />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHeadSafe({ title: "校园兼职后台" });
|
|
definePageMeta({ middleware: ["auth"] });
|
|
const url = ref(process.env.BASE_URL);
|
|
</script>
|