22 lines
352 B
Vue
22 lines
352 B
Vue
<template>
|
|
<div id="srs">
|
|
<header>
|
|
<navbar/>
|
|
</header>
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'app'
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
#srs {
|
|
padding-top: 50px;
|
|
min-height: 100vh;
|
|
background: url('./assets/images/bg1.png') center center fixed repeat;
|
|
}
|
|
</style> |