Files
company-website/src/views/admin/dashboard.vue

19 lines
324 B
Vue
Raw Normal View History

<!-- 面板主页 -->
<template>
<div class="dashboard">
<div class="dashboard-container">
<div class="dashboard-text">欢迎来到面板首页</div>
</div>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
</script>
<style lang="less" scoped>
.dashboard {
height: 100%;
}
</style>