添加了部分来自于BedrockWiki的文章!

This commit is contained in:
boybook
2025-03-19 22:17:04 +08:00
parent 41635cf9bb
commit c25ebf2767
558 changed files with 96136 additions and 24 deletions

View File

@@ -0,0 +1,22 @@
<template>
<div
ref="codeHeader"
class="tile flex items-center mt-8 p-2 pb-1.5 overflow-auto break-all"
>
<span class="flex">
<span class="opacity-50"><slot /></span>
</span>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
const codeHeader = ref<HTMLDivElement | null>(null)
</script>
<style scoped>
.icon {
fill: white;
}
</style>