feat(工具箱): 添加“Minecraft 聊天记录查看”工具

This commit is contained in:
2025-01-31 20:40:22 +08:00
parent a789486823
commit e1c02b68a3
2 changed files with 20 additions and 0 deletions

View File

@@ -172,6 +172,17 @@ export const toolList = [
version: '0', version: '0',
enabled: false, enabled: false,
}, },
{
id: 'minecraft-chat-history-reader',
component: 'Minecraft/ChatHistoryReader',
title: 'Minecraft 聊天记录查看',
iconClass: 'mdi mdi-format-list-text',
desc: '读取并解析 latest.log 文件,显示聊天记录。',
createdAt: '',
updatedAt: '',
version: '0',
enabled: false,
},
{ {
id: 'minecraft-uuid-converter', id: 'minecraft-uuid-converter',
component: 'Minecraft/UuidConverter', component: 'Minecraft/UuidConverter',

View File

@@ -0,0 +1,9 @@
<template>
<div class="tool-detail-page"></div>
</template>
<script setup>
</script>
<style lang="less" scoped>
</style>