mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-04-25 23:37:43 -05:00
18 lines
531 B
Vue
18 lines
531 B
Vue
<template>
|
|
<ScreenshotLayout header="Salmon Run">
|
|
<div class="grow flex items-center justify-center">
|
|
<div class="max-w-2xl scale-[1.6]">
|
|
<SalmonRunBox class="-rotate-1" is-screenshot :startTime="route.query.startTime" />
|
|
</div>
|
|
</div>
|
|
</ScreenshotLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useRoute } from 'vue-router';
|
|
import ScreenshotLayout from '../../layouts/ScreenshotLayout.vue';
|
|
import SalmonRunBox from '../../components/salmonrun/SalmonRunBox.vue';
|
|
|
|
const route = useRoute();
|
|
</script>
|