16 lines
285 B
Vue
16 lines
285 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" style="">
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
|
||
|
|
||
|
</style>
|