update
This commit is contained in:
parent
a40fa389d3
commit
039b24ffd5
1
TODO.md
1
TODO.md
|
@ -7,6 +7,7 @@
|
|||
|
||||
|
||||
## Schedule
|
||||
* ContentPage - change the background div to a named slot instead so can use whatever components i want inthere instaed.
|
||||
* styling
|
||||
* page transitions
|
||||
* images
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
<template>
|
||||
<div class="background-image">
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import imageLoader from '~/mixins/imageLoader.js'
|
||||
|
||||
export default {
|
||||
mixins: [ imageLoader ],
|
||||
props: {
|
||||
},
|
||||
|
||||
data () {
|
||||
return {
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
.background-image {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
</style>
|
|
@ -6,6 +6,7 @@
|
|||
<slot></slot>
|
||||
</div>
|
||||
</section>
|
||||
<!-- TODO CHANGE THE BACKGROUND DIV TO A NAMED SLOT -->
|
||||
<div class="background background-container">
|
||||
<div class="background background-loading"
|
||||
:style="loadingStyle"></div>
|
||||
|
|
Loading…
Reference in New Issue