This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-03-17 09:34:04 +07:00
parent c4fcfbef76
commit 8302f3c94d

View file

@ -27,9 +27,9 @@ const router = useRouter()
const $q = useQuasar() const $q = useQuasar()
// landing page config url // landing page config url
const configParam = { // const configParam = {
landingPageUrl: import.meta.env.VITE_URL_LANDING, // landingPageUrl: import.meta.env.VITE_URL_LANDING,
} // }
const modalReset = ref<boolean>(false) // popup reset password const modalReset = ref<boolean>(false) // popup reset password
const fullName = ref<string>('') // const fullName = ref<string>('') //
@ -291,11 +291,6 @@ onMounted(async () => {
if (checkTokenParsed != null) { if (checkTokenParsed != null) {
fullName.value = checkTokenParsed.name fullName.value = checkTokenParsed.name
} }
console.log('configParam.landingPageUrl', configParam.landingPageUrl)
console.log(
'import.meta.env.VITE_URL_LANDING',
import.meta.env.VITE_URL_LANDING
)
}) })
</script> </script>