Removed unused varables and comments

This commit is contained in:
2019-06-04 21:48:38 +02:00
parent fb8f6654aa
commit 2b634bc711

View File

@@ -1,9 +1,8 @@
<template> <template>
<section class="home"> <section>
<LandingBanner /> <LandingBanner />
<movies-list v-for="item in homepageLists" :propList="item" :shortList="true">{{item}}</movies-list> <movies-list v-for="item in homepageLists" :propList="item" :shortList="true"></movies-list>
<!-- <movies-list v-for="item in homepageLists" v-if="item.isCategory" :type="'component'" :mode="item.type" :category="item.query" :shortList="true"></movies-list> -->
</section> </section>
</template> </template>
@@ -18,8 +17,6 @@ export default {
data(){ data(){
return { return {
homepageLists: storage.homepageLists, homepageLists: storage.homepageLists,
listTypes: storage.listTypes,
imageFile: 'dist/pulp-fiction.jpg' imageFile: 'dist/pulp-fiction.jpg'
} }
}, },