17 lines
225 B
Vue
17 lines
225 B
Vue
|
<template>
|
||
|
<div id="app">
|
||
|
<router-view />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style lang="sass">
|
||
|
|
||
|
@import 'styles/typography'
|
||
|
@import 'styles/colors'
|
||
|
|
||
|
html
|
||
|
font-family: $open-sans
|
||
|
height: 100%
|
||
|
background: $background
|
||
|
</style>
|