mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
ac5ef6e324
commenti da mastodon, widget con custom widget test...
22 lines
506 B
Vue
22 lines
506 B
Vue
<template lang="pug">
|
|
div
|
|
p porcodio
|
|
</template>
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
// import List from '../../components/List'
|
|
import moment from 'dayjs'
|
|
|
|
export default {
|
|
name: 'diocane',
|
|
layout: 'iframe',
|
|
// components: { List },
|
|
async asyncData ({ $axios, req, res }) {
|
|
const show_tags = req.query.showtags
|
|
const tags = req.query.tags
|
|
const places = req.query.places
|
|
const events = await $axios.$get('/export/json')
|
|
return { events, show_tags }
|
|
},
|
|
}
|
|
</script>
|