jichoi / lms_front star
File name
Commit message
Commit date
File name
Commit message
Commit date
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<template>
    <div class="flex justify-between" style="height: 100%;">
       <Side_t></Side_t>
       <div style="padding: 15px 60px 120px 0px ">
        <Header></Header>
          <div class="main-wrap">
              <router-view />
          </div>
       </div>
    </div>
</template>
<script>
import Header from '../../layout/Header.vue';
import Menu from '../../layout/Menu.vue';
import Side_t from '../../layout/Side_t.vue';
export default {
  data() {
      return {
      }
  },
  methods: {
     
  },
  watch: {
  },
  computed: {
  },
  components: {
      Header: Header,
    Menu: Menu,
    // Footer:Footer,
    Side_t:Side_t,
  },
  mounted() {
      console.log('main mounted');
  }
}
</script>
<style scoped>
.main-wrap{
  margin-top: 20px;
  position: static;
  width: 144rem;
  height: 100%;
}
</style>
X