unibest/src/pages/my/index.vue

17 lines
317 B
Vue
Raw Normal View History

<route lang="json5">
{
style: { navigationBarTitleText: '我的' },
}
</route>
2024-01-03 17:09:44 +08:00
<template>
<view>我的</view>
2024-01-16 10:15:20 +08:00
<view @click="goLoginPage">去登录</view>
2024-01-03 17:09:44 +08:00
</template>
2024-01-16 10:15:20 +08:00
<script lang="ts" setup>
const goLoginPage = () => {
uni.navigateTo({ url: '/pages/login/index' })
}
// 用户登录获取openId
</script>