forked from rc/aircox
radiocampus: style update
This commit is contained in:
19
radiocampus/assets/src/components/AEpisode.vue
Normal file
19
radiocampus/assets/src/components/AEpisode.vue
Normal file
@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<slot :page="page" :podcasts="podcasts"></slot>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {Set} from '../model.js';
|
||||
import Sound from '../sound.js';
|
||||
import APage from './APage.vue';
|
||||
|
||||
export default {
|
||||
extends: APage,
|
||||
|
||||
data() {
|
||||
return {
|
||||
podcasts: new Set(Sound, {items:this.page.podcasts}),
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
Reference in New Issue
Block a user