blob: 2e5bbb9d335b689800e0277e741c602f614d517c (
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
27
28
|
<!--
Authors: see git history
Copyright (c) 2010 Authors
Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
-->
<template>
<div id="app">
<v-app>
<v-main>
<router-view></router-view>
</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>
|