38 lines
609 B
Plaintext
38 lines
609 B
Plaintext
<template>
|
|
<view class="admin-home-page">
|
|
<AdminLayout>
|
|
</AdminLayout>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
import { ref, onMounted } from 'vue'
|
|
import AdminLayout from '@/layouts/admin/AdminLayout.uvue'
|
|
|
|
const title = ref<string>('管理后台首页')
|
|
|
|
onMounted(() => {
|
|
console.log('首页加载完成')
|
|
console.log('首页显示')
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.admin-home-page {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.home-content {
|
|
padding: 20px;
|
|
background-color: #f5f7fa;
|
|
}
|
|
|
|
.welcome-text {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
color: #1a1a1a;
|
|
}
|
|
</style>
|
|
|