37 lines
620 B
Vue
37 lines
620 B
Vue
<template>
|
|
<div id="app">
|
|
<!-- <div id="nav">-->
|
|
<!-- <router-link to="/">Home</router-link> |-->
|
|
<!-- <router-link to="/about">About</router-link>-->
|
|
<!-- </div>-->
|
|
<div class="page-container">
|
|
<md-app>
|
|
<md-app-content>
|
|
<router-view/>
|
|
</md-app-content>
|
|
</md-app>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
#nav {
|
|
padding: 30px;
|
|
text-align: center;
|
|
|
|
a {
|
|
font-weight: bold;
|
|
color: #2c3e50;
|
|
|
|
&.router-link-exact-active {
|
|
color: #42b983;
|
|
}
|
|
}
|
|
}
|
|
|
|
.page-container {
|
|
width: 1024px;
|
|
margin: 100px auto auto auto;
|
|
}
|
|
</style>
|