12 行
264 B
Vue
12 行
264 B
Vue
|
|
<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>
|