lanan-repair/pages/index/index.vue

31 lines
289 B
Vue
Raw Normal View History

2024-09-22 15:07:01 +08:00
<template>
<view class="content">
2024-09-23 09:48:02 +08:00
2024-09-22 15:07:01 +08:00
</view>
</template>
<script>
2024-09-28 00:43:23 +08:00
import {
getToken
} from "@/utils/auth";
2024-09-23 09:48:02 +08:00
2024-09-28 00:43:23 +08:00
export default {
2024-09-22 15:07:01 +08:00
data() {
return {
2024-09-23 09:48:02 +08:00
2024-09-22 15:07:01 +08:00
}
},
onLoad() {
2024-09-28 00:43:23 +08:00
uni.reLaunch({
url: '/pages-home/home/home'
})
2024-09-22 15:07:01 +08:00
},
methods: {
}
}
</script>
<style>
2024-09-28 00:43:23 +08:00
</style>