Blame view

HHECS.Web/src/App.vue 221 Bytes
胡菁 authored
1
2
3
4
5
6
7
8
<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script>
export default {
9
10
  name: "App",
};
胡菁 authored
11
</script>
12
13
14
15
16
17
<style lang="scss">
/* 禁用全局滚动条 */
body {
  overflow: hidden !important;
}
</style>