summaryrefslogtreecommitdiff
path: root/electron/src/renderer/App.vue
blob: 7888d9680bd7797319f35bf97967cb096ecd4919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <div id="app">
    <router-view></router-view>
  </div>
</template>

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

<style>
  /* CSS */
</style>