traxxx-web/pages/actors/@actorId/+Page.vue

12 lines
172 B
Vue
Raw Normal View History

<template>
<div class="page">
<h2>Actor</h2>
</div>
</template>
<script setup>
import { inject } from 'vue';
const { routeParams } = inject('pageContext');
</script>