19 lines
216 B
Vue
19 lines
216 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'App',
|
|
|
|
};
|
|
</script>
|
|
<style lang="scss">
|
|
#app{
|
|
@include background_color($light_background_color);
|
|
}
|
|
</style>
|