完成vue+amis的前端版本

This commit is contained in:
2025-03-05 23:16:02 +08:00
parent 7f3a8afcb3
commit 0598d6d9de
120 changed files with 65658 additions and 0 deletions

23
client/src/views/Home.vue Normal file
View File

@@ -0,0 +1,23 @@
<script setup>
import {onMounted} from 'vue'
import {amisRender} from '../utils.js'
onMounted(() => {
amisRender(
'#amis-home',
information => {
return {
type: 'page',
body: 'Home'
}
},
)
})
</script>
<template>
<div id="amis-home"></div>
</template>
<style scoped>
</style>