Blame view

code/finance_web/src/App.vue 271 Bytes
a  
谢明辉 committed
1 2 3
<template>
  <div id="app">
    <router-view></router-view>
a  
谢明辉 committed
4
  </div>
a  
谢明辉 committed
5 6 7
</template>

<script>
a  
谢明辉 committed
8 9 10 11 12 13 14
  export default {
    name: "App",
    methods: {},
    data() {
      return {};
    }
  };
a  
谢明辉 committed
15 16 17 18 19
</script>
  .el-container{

  }
<style>
a  
谢明辉 committed
20 21 22 23
html,
body,
#app {
  height: 100%;
a  
谢明辉 committed
24 25
}
</style>