♻️ (notes) home is now the note initial screen with a fo…
This commit is contained in:
28
src/hooks/useForm.hook.ts
Normal file
28
src/hooks/useForm.hook.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import { ref } from '@vue/reactivity'
|
||||
import { useRouter } from 'vue-router'
|
||||
|
||||
export const useForm = () => {
|
||||
const userInput = ref('')
|
||||
const repoInput = ref('')
|
||||
const { push } = useRouter()
|
||||
|
||||
const submit = () => {
|
||||
if (!userInput.value || !repoInput.value) {
|
||||
return
|
||||
}
|
||||
|
||||
push({
|
||||
name: 'Home',
|
||||
params: {
|
||||
user: userInput.value,
|
||||
repo: repoInput.value
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
return {
|
||||
userInput,
|
||||
repoInput,
|
||||
submit
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user