summaryrefslogtreecommitdiff
path: root/electron/src/renderer/App.vue
blob: 7579d04e4d9a6d71468903f4a27bfb0ea48c9a72 (plain)
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
<template>
  <div id="app">
    <v-app>
      <v-main>
        <!-- the v-container, v-row, and v-col give us vertical centering -->
        <v-container fill-height fluid>
          <v-row align="center" justify="center">
            <v-col>
              <router-view></router-view>
            </v-col>
          </v-row>
        </v-container>
      </v-main>
    </v-app>
  </div>
</template>

<script>
export default {
  name: 'my-project'
}
</script>

<style>
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons');
</style>