14 lines
173 B
Vue
14 lines
173 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
year: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<h1 class="green">{{ year }} Tracker Expanded</h1>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|