docs: 全新文档

This commit is contained in:
wintel
2025-04-23 23:37:58 +08:00
parent 05922c77f3
commit 918b6a53d4
48 changed files with 4207 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
import { ref } from 'vue'
const message = ref('Hello World!')
</script>
<template>
<div class="my-custom-content">
{{ message }}
</div>
</template>