mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
13 lines
288 B
Vue
13 lines
288 B
Vue
<template>
|
|
<view style="line-height: 88rpx; text-align: center">登录后访问log</view>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onLoad } from '@dcloudio/uni-app';
|
|
onLoad((query) => {
|
|
console.log('log onLoad', query);
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|