This commit is contained in:
yinxiaolong
2026-07-23 15:26:41 +08:00
commit 72d7dccaef
26 changed files with 9500 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>