Skip to content

Instantly share code, notes, and snippets.

@colinf
Last active March 9, 2017 22:00
Show Gist options
  • Save colinf/70f84e48b6f748ea89fcecfbb1cb905d to your computer and use it in GitHub Desktop.
Save colinf/70f84e48b6f748ea89fcecfbb1cb905d to your computer and use it in GitHub Desktop.
Links and route content with vue-router ( see http://j.mp/2m7IauQ )
<template>
<div id="app">
<div class="container-fluid">
<div class="row">
<div class="col-xs-2 menu-pane"> <!-- Section 1 -->
<ul class="nav nav-stacked">
<li><router-link :to="teamLink">Teams</router-link></li>
<li><router-link to="/about">About</router-link></li>
</ul>
</div>
<div class="col-xs-10">
<div class="row">
<div class="col-xs-4"> <!-- Section 2 -->
<router-view></router-view>
</div>
<div class="col-xs-8"> <!-- Section 3 -->
<router-view name="detail"></router-view>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment