KawAnime/pages/watchList.vue

47 lines
772 B
Vue
Raw Normal View History

2017-04-15 14:16:14 +00:00
<template>
<v-container fluid>
<v-row>
<v-col xs12>
<v-row>
<template v-for="item in watchList"></template>
</v-row>
</v-col>
<v-col md6 xs12>
<v-row>
<template v-for="item in seen"></template>
</v-row>
</v-col>
<v-col md6 xs12>
<v-row>
<template v-for="item in watching"></template>
</v-row>
</v-col>
</v-row>
</v-container>
2017-04-15 14:16:14 +00:00
</template>
<script>
export default {
data() {
return {
2017-04-15 14:16:14 +00:00
}
},
computed: {
watchList: function () {
return this.$store.state.watchList
},
seen: function () {
return this.$store.state.seen
},
watching: function () {
return this.$store.state.watching
}
},
methods: {}
2017-04-15 14:16:14 +00:00
}
</script>
<style>
</style>