20 lines
273 B
Vue
20 lines
273 B
Vue
<template>
|
|
<main class="splash">
|
|
<pre>{{ events }}</pre>
|
|
</main>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useData } from 'vike-vue/useData'
|
|
|
|
const { events } = useData()
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
main.splash {
|
|
pre {
|
|
margin: 0;
|
|
}
|
|
}
|
|
</style>
|