VCinema/src/views/Screen.vue

19 lines
180 B
Vue

<template>
<h1>Screen {{ id }}</h1>
</template>
<script>
export default {
props: {
id: {
required: true,
type: String
}
}
}
</script>
<style>
</style>