LeagueStats/client/src/App.vue

37 lines
567 B
Vue
Raw Normal View History

2019-03-30 22:55:48 +00:00
<template>
<div id="app" class="font-sans bg-gray-200 antialiased">
2019-04-10 20:05:52 +00:00
<!-- <div class="nav">
2019-03-30 22:55:48 +00:00
<router-link to="/">Accueil</router-link> |
2019-04-07 17:44:01 +00:00
<router-link :to="`/summoner/euw/${summoner}`">
2019-03-30 22:55:48 +00:00
{{ linkText }}
</router-link>
2019-04-10 20:05:52 +00:00
</div> -->
2019-03-30 22:55:48 +00:00
<router-view/>
</div>
</template>
<style>
#app {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
min-height: 100vh;
2019-03-30 22:55:48 +00:00
}
</style>
<script>
export default {
data() {
return {
linkText: 'Test link',
summoner: 'Kalane'
}
},
}
</script>