23 lines
784 B
Vue
23 lines
784 B
Vue
<template>
|
||
<view style="padding: 100px; text-align: center; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;">
|
||
<text style="font-size: 48px; color: #fff; margin-bottom: 40px; display: block;">强宝爱记账</text>
|
||
<text style="font-size: 32px; color: rgba(255,255,255,0.9); display: block;">登录页面测试</text>
|
||
<text style="font-size: 24px; color: rgba(255,255,255,0.7); margin-top: 20px; display: block;">如果能看到这个,说明路由正常</text>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
onLoad() {
|
||
console.log('登录页面加载成功')
|
||
},
|
||
onReady() {
|
||
console.log('登录页面准备完成')
|
||
}
|
||
}
|
||
</script>
|
||
|
||
|
||
|
||
|