添加配置项,首页

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

View File

@@ -8,8 +8,7 @@
</template>
<script setup>
import { ref } from 'vue'
import { onReady } from '@dcloudio/uni-app'
import { onMounted, ref } from 'vue'
const cb = v => {
console.log(v)
}
@@ -27,10 +26,8 @@
// }
// }
const title = ref('你好')
onReady(() => {
console.log('启动了!!')
})
const title = ref('你112好')
</script>
<style>

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>