Sign in

cmc / huaheng-cmc · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • huaheng-cmc
  • huaheng-cmc-web
  • src
  • layout
  • index.vue
  • 前后端代码分离整理成一个整项目 ...
    eb073d6a
    Signed-off-by: TanYibin <5491541@qq.com>
    谭毅彬 authored
    2026-06-04 16:59:51 +0800  
    Browse Code »
index.vue 337 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<template>
	<div class="app_container">
		<app-router></app-router>
	</div>
</template>

<script>
import appRouter from './appRouter'

export default {
	components: {
		appRouter
	}
}
</script>

<style scoped>
.app_container {
	width: 100%;
	height: 100%;
	background: #03050c;
	background-size: 100% 100%;
	overflow: hidden;
}
</style>