* Moved nuxt app to main app
This commit is contained in:
40
pages/favoris/index.vue
Normal file
40
pages/favoris/index.vue
Normal file
@@ -0,0 +1,40 @@
|
||||
<template>
|
||||
<section class="favourites bg-image">
|
||||
<header>
|
||||
<h1 class="heading-1">
|
||||
Mes favoris
|
||||
</h1>
|
||||
</header>
|
||||
<div class="section-content">
|
||||
<celestials-list :celestials="favourites" />
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'Favourites',
|
||||
|
||||
data () {
|
||||
return {
|
||||
favourites: []
|
||||
}
|
||||
},
|
||||
|
||||
created () {
|
||||
// const favourites = this.$store.state.user.favourites
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.favourites {
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
padding: 25px 5%;
|
||||
|
||||
&:after {
|
||||
background-image: url("/home_bg-min.jpg");
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user