添加配置项,首页

This commit is contained in:
cbb
2025-12-23 17:41:05 +08:00
parent d4d5cdb335
commit 0cf5bb9dad
12 changed files with 317 additions and 22 deletions

15
pages/login/login.vue Normal file
View File

@@ -0,0 +1,15 @@
<template>
<view>{{ name }}</view>
</template>
<script setup>
import { ref } from 'vue'
import { onLoad } from '@dcloudio/uni-app'
const name = ref('登1录')
onLoad(e => {
console.log('接收==', e.id)
})
</script>
<style></style>