2018-08-28 22:50:22 +02:00
|
|
|
<template>
|
2018-09-06 19:46:09 +02:00
|
|
|
<div id="app">
|
|
|
|
<h1>Test</h1>
|
|
|
|
<router-view/>
|
|
|
|
</div>
|
2018-08-28 22:50:22 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2018-09-06 19:46:09 +02:00
|
|
|
export default {
|
|
|
|
name: 'app'
|
|
|
|
}
|
2018-08-28 22:50:22 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
2018-09-06 19:46:09 +02:00
|
|
|
#app {
|
|
|
|
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-align: center;
|
|
|
|
color: #2c3e50;
|
|
|
|
margin-top: 60px;
|
|
|
|
}
|
2018-08-28 22:50:22 +02:00
|
|
|
</style>
|