2019-07-15 08:58:03 +00:00
|
|
|
<template>
|
|
|
|
<div id="app">
|
2019-07-18 20:36:04 +00:00
|
|
|
<nav class="navbar" role="navigation" aria-label="main navigation">
|
|
|
|
<div class="navbar-brand">
|
|
|
|
<a class="navbar-item" href="/dashboard">
|
|
|
|
<img
|
|
|
|
src="./assets/images/traefik_logo@3x.svg"
|
|
|
|
alt="Traefik Webui"
|
|
|
|
width="112"
|
|
|
|
height="28"
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</nav>
|
2019-07-15 08:58:03 +00:00
|
|
|
<router-view />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="sass">
|
|
|
|
|
|
|
|
@import 'styles/typography'
|
|
|
|
@import 'styles/colors'
|
|
|
|
|
|
|
|
html
|
|
|
|
font-family: $open-sans
|
|
|
|
height: 100%
|
|
|
|
background: $background
|
|
|
|
</style>
|