Files
urbanLifeline/urbanLifelineWeb/packages/platform/src/views/public/Login.vue

24 lines
403 B
Vue
Raw Normal View History

2025-12-10 17:00:54 +08:00
<template>
<div>
</div>
</template>
<script lang="ts" setup>
import { reactive } from "vue"
import type { LoginParam} from "@shared/types/auth"
import { authAPI } from "@shared/api/auth/auth"
const loginParam = reactive<LoginParam>({
loginType: "password"
})
async function login(){
// const result = await authAPI.login(loginParam)
}
</script>
<style lang="scss" scoped>
</style>