flying-monkey/pages/login/login.vue

28 lines
366 B
Vue

<template>
<view @tap="gohome" style="display: flex;align-items: center;justify-content: center;height: 100vh;">
登录页
</view>
</template>
<script>
export default {
data() {
return {
};
},
onLoad() {
},
methods: {
gohome(){
uni.navigateTo({
url:'/pages/register/register'
})
}
}
}
</script>
<style>
</style>