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