Skip to content

Instantly share code, notes, and snippets.

@jasperf
Created December 25, 2017 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasperf/c1ccc7b0e6d5997ff8874f63927c142d to your computer and use it in GitHub Desktop.
Save jasperf/c1ccc7b0e6d5997ff8874f63927c142d to your computer and use it in GitHub Desktop.
Vue Store App.vue file
<template>
<div id="app">
<nav>
<div class="container">
<ul class="nav__left">
<!-- Navigation Links -->
<li><router-link to="/">Home</router-link></li>
<li><router-link to="/admin">Admin</router-link></li>
<li><router-link to="/cart">Cart</router-link></li>
</ul>
</div>
</nav>
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'app',
};
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment