19 lines
345 B
Vue
19 lines
345 B
Vue
<template>
|
|
<div class="lexicon-module">
|
|
<h2>题词模块</h2>
|
|
<!-- 题词模块内容将在这里实现 -->
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
defineComponent({ name: 'prompt' });
|
|
</script>
|
|
|
|
<style scoped>
|
|
.lexicon-module {
|
|
padding: 20px;
|
|
height: 100%;
|
|
}
|
|
</style> |