Files
uni-qnc-mini/src/layouts/login.vue

25 lines
431 B
Vue
Raw Normal View History

2024-11-18 14:21:31 +08:00
<script setup>
function handleClickLeft() {
uni.reLaunch({
url: '/pages/index',
})
}
</script>
<template>
<view class="min-h-full from-lightblue-200/40 to-white bg-gradient-to-b">
<wd-navbar
title=""
left-arrow
safe-area-inset-top
custom-style="background-color: transparent !important;"
@click-left="handleClickLeft"
/>
<slot />
</view>
</template>
<style scoped>
</style>