Sign in

ECS5 / ECS5.0Web · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ECS5.0Web
  • HHECS.Web
  • src
  • App.vue
  • 新增页面和登录 全局错误处理
    d99417c4
    王硕 authored
    2025-03-31 20:29:27 +0800  
    Browse Code »
App.vue 221 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script>
export default {
  name: "App",
};
</script>
<style lang="scss">
/* 禁用全局滚动条 */
body {
  overflow: hidden !important;
}
</style>