Files
chatgpt-ui/pages/login.vue
2023-02-21 21:27:00 +08:00

17 lines
269 B
Vue

<template>
<v-text-field v-model="val" />
<v-btn @click="login">Login</v-btn>
</template>
<script setup>
definePageMeta({
layout: false
})
const val = ref('')
const { $auth } = useNuxtApp()
const login = () => {
$auth.login()
navigateTo('/test')
}
</script>