mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-19 03:04:05 +00:00
Upgrade vue, vue3-flatpickr, vue-i18n, vue-router to the latest versions
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
:to="`/${globalStore.companySlug}/customer/dashboard`"
|
||||
/>
|
||||
<BaseBreadcrumbItem
|
||||
:title="$tc('estimates.estimate', 2)"
|
||||
:title="$t('estimates.estimate', 2)"
|
||||
to="#"
|
||||
active
|
||||
/>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
:title="$t('general.home')"
|
||||
:to="`/${globalStore.companySlug}/customer/dashboard`"
|
||||
/>
|
||||
<BaseBreadcrumbItem :title="$tc('invoices.invoice', 2)" to="#" active />
|
||||
<BaseBreadcrumbItem :title="$t('invoices.invoice', 2)" to="#" active />
|
||||
</BaseBreadcrumb>
|
||||
<template #actions>
|
||||
<BaseButton
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
:to="`/${globalStore.companySlug}/customer/dashboard`"
|
||||
/>
|
||||
|
||||
<BaseBreadcrumbItem :title="$tc('payments.payment', 2)" to="#" active />
|
||||
<BaseBreadcrumbItem :title="$t('payments.payment', 2)" to="#" active />
|
||||
</BaseBreadcrumb>
|
||||
|
||||
<template #actions>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
<div class="grid gap-6 sm:grid-col-1 md:grid-cols-2 mt-6">
|
||||
<BaseInputGroup
|
||||
:label="$tc('settings.account_settings.profile_picture')"
|
||||
:label="$t('settings.account_settings.profile_picture')"
|
||||
>
|
||||
<BaseFileUploader
|
||||
v-model="imgFiles"
|
||||
@@ -30,7 +30,7 @@
|
||||
<span></span>
|
||||
|
||||
<BaseInputGroup
|
||||
:label="$tc('settings.account_settings.name')"
|
||||
:label="$t('settings.account_settings.name')"
|
||||
:error="
|
||||
v$.userForm.name.$error && v$.userForm.name.$errors[0].$message
|
||||
"
|
||||
@@ -44,7 +44,7 @@
|
||||
</BaseInputGroup>
|
||||
|
||||
<BaseInputGroup
|
||||
:label="$tc('settings.account_settings.email')"
|
||||
:label="$t('settings.account_settings.email')"
|
||||
:error="
|
||||
v$.userForm.email.$error && v$.userForm.email.$errors[0].$message
|
||||
"
|
||||
@@ -62,7 +62,7 @@
|
||||
v$.userForm.password.$error &&
|
||||
v$.userForm.password.$errors[0].$message
|
||||
"
|
||||
:label="$tc('settings.account_settings.password')"
|
||||
:label="$t('settings.account_settings.password')"
|
||||
>
|
||||
<BaseInput
|
||||
v-model="userStore.userForm.password"
|
||||
@@ -87,7 +87,7 @@
|
||||
</BaseInputGroup>
|
||||
|
||||
<BaseInputGroup
|
||||
:label="$tc('settings.account_settings.confirm_password')"
|
||||
:label="$t('settings.account_settings.confirm_password')"
|
||||
:error="
|
||||
v$.userForm.confirm_password.$error &&
|
||||
v$.userForm.confirm_password.$errors[0].$message
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<template>
|
||||
<BasePage>
|
||||
<BasePageHeader :title="$tc('settings.setting', 2)" class="pb-6">
|
||||
<BasePageHeader :title="$t('settings.setting', 2)" class="pb-6">
|
||||
<BaseBreadcrumb>
|
||||
<BaseBreadcrumbItem
|
||||
:title="$t('general.home')"
|
||||
:to="`/${companySlug}/customer/dashboard`"
|
||||
/>
|
||||
<BaseBreadcrumbItem
|
||||
:title="$tc('settings.setting', 2)"
|
||||
:title="$t('settings.setting', 2)"
|
||||
:to="`/${companySlug}/customer/settings/customer-profile`"
|
||||
active
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user