忘了写到哪了

This commit is contained in:
quantulr
2022-08-30 10:36:30 +08:00
parent 1d2f37bfe1
commit 9e00dce03c
44 changed files with 5136 additions and 304 deletions

View File

@ -0,0 +1,10 @@
<template>
<div>
{{ msg }}
</div>
</template>
<script setup>
import { ref } from "vue";
const msg = ref("hekko");
</script>