Blame view

src/App.vue 378 Bytes
8a0dd59d9   Digvijay Singh   first commit
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
  <template>
    <div id="app">
        <router-view />
    </div>
  </template>
  
  <script>
  import "bootstrap/dist/css/bootstrap.min.css";
  export default {
    name: "App",
    data() {
      return {
      };
    },
    mounted() {
      
    }
  };
  
  </script>
  
  <style>
  @import "assets/css/custom.css";
  
  #row {
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  </style>