feat: first commit

This commit is contained in:
Yuwnei Xiao
2023-08-23 12:10:29 +08:00
parent 4ae85fdb0f
commit cb2cead693
23 changed files with 2523 additions and 2 deletions

9
packages/MyComponent.vue Normal file
View File

@@ -0,0 +1,9 @@
<template>
<div>Hello {{ msg }} !</div>
</template>
<script lang="ts" setup>
defineProps({
msg: String
})
</script>

1
packages/index.ts Normal file
View File

@@ -0,0 +1 @@
export { default as MyComponent } from './MyComponent.vue'