You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
977 B
46 lines
977 B
<template> |
|
<div class="main"> |
|
<v-head></v-head> |
|
<div class="layout"> |
|
<navbar></navbar> |
|
<div class="content"> |
|
<transition name="move" mode="out-in"> |
|
<router-view class="view"></router-view> |
|
</transition> |
|
<el-backtop target=".content"></el-backtop> |
|
</div> |
|
<v-footer ref="footer"></v-footer> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
import vHead from '../header' |
|
import navbar from '../navbar' |
|
import vFooter from '../footer' |
|
import Setting from '@/setting' |
|
export default { |
|
data() { |
|
return { |
|
|
|
}; |
|
}, |
|
components: { |
|
vHead, |
|
navbar, |
|
vFooter |
|
}, |
|
created() { |
|
|
|
} |
|
}; |
|
</script> |
|
<style lang="scss" scoped> |
|
.main{ |
|
min-height: 100%; |
|
.content{ |
|
min-height: calc(100vh - 176px); |
|
padding: 24px 24px 0; |
|
} |
|
} |
|
</style> |