5 lines
124 B
TypeScript
5 lines
124 B
TypeScript
import { computed, ref } from "vue"
|
|
|
|
export const username = ref("")
|
|
export const authed = computed(() => !!username.value)
|