17 lines
321 B
Vue
17 lines
321 B
Vue
|
<script setup>
|
||
|
import {useAuth} from "@/store/auth/index.js"
|
||
|
const {clickSendCode,telNum,code,showTextCode ,clickLogin }= useAuth()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="box-border relative w-screen min-h-screen bg-center bg-no-repeat flex items-center flex-col">
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
</style>
|