Show.vue 401 B

12345678910111213141516171819
  1. <script setup>
  2. import radiomanifest from '../js/radiomanifest'
  3. const { f7Route } = defineProps({ f7Route: Object })
  4. const Radio = radiomanifest.currentRadio
  5. // ma non c'e' Radio.schedule.getShowPodcast ?
  6. </script>
  7. <template>
  8. <f7-page name="show">
  9. <f7-block-title>{{Radio.name}}</f7-block-title>
  10. <f7-block-header>{{Radio.description}}</f7-block-header>
  11. </f7-page>
  12. </template>