beidou-satellite-data-monitor/hwasmart-beidou-satellite-d.../src/render/components/SubTitleView.vue

9 lines
153 B
Vue

<template>
<h1 class="text-4xl text-yellow-50 mb-5"> {{ title }} </h1>
</template>
<script lang="ts" setup>
defineProps({
title: String
})
</script>