AndroidCommon/frontend/ops-platform/src/views/ModulePlaceholderView.vue

12 行
264 B
Vue

2026-03-27 18:45:21 +08:00
<template>
<section class="panel">
<p class="section-tag">业务模块</p>
<h2>{{ title }}</h2>
<p class="muted">{{ description }}</p>
</section>
</template>
<script setup lang="ts">
defineProps<{ title: string; description: string }>()
</script>