2019-05-24 23:11:42 +00:00
|
|
|
<template>
|
2019-05-24 23:24:36 +00:00
|
|
|
<div id="app" class="min-h-screen font-sans bg-white text-black">
|
2019-05-24 23:11:42 +00:00
|
|
|
<div id="nav">
|
|
|
|
<router-link to="/">Home</router-link> |
|
|
|
|
<router-link to="/about">About</router-link>
|
|
|
|
</div>
|
|
|
|
<router-view/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2019-05-24 23:24:36 +00:00
|
|
|
<style src="./css/app.css"></style>
|