14 lines
291 B
Vue
14 lines
291 B
Vue
<script lang="ts" setup>
|
|
import { onLoad } from '@dcloudio/uni-app';
|
|
|
|
onLoad((query) => {
|
|
console.log('log onLoad query', query);
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<view style="line-height: 88rpx; text-align: center">登录后访问log</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style>
|