chore: lint and fmt
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import { ref } from 'vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { ref } from "vue"
|
||||
import { useRouter } from "vue-router"
|
||||
|
||||
export const useForm = () => {
|
||||
const userInput = ref('')
|
||||
const repoInput = ref('')
|
||||
const userInput = ref("")
|
||||
const repoInput = ref("")
|
||||
const { push } = useRouter()
|
||||
|
||||
const submit = () => {
|
||||
@@ -12,7 +12,7 @@ export const useForm = () => {
|
||||
}
|
||||
|
||||
push({
|
||||
name: 'FluxNoteView',
|
||||
name: "FluxNoteView",
|
||||
params: {
|
||||
user: userInput.value,
|
||||
repo: repoInput.value
|
||||
|
||||
Reference in New Issue
Block a user