if (typeof email !== "undefined" && typeof username !== "undefined") {
    Vue.createApp({
        data() {
            return {
                // eslint-disable-next-line no-undef
                email,
                // eslint-disable-next-line no-undef
                username,
                oldPassword: "",
                password: "",
                passwordConfirm: "",
                loading: false,
            };
        },
        methods: {
            // eslint-disable-next-line no-unused-vars
            async updateProfil(event) {
                // try {
                //     if ( this.password !== this.passwordConfirm ) {
                //         throw "La confirnation du mot de passe ne correspond pas";
                //     }
                // } catch(err) {
                //     event.preventDefault();
                //     showToastr(err);
                // }
            },
        },
    }).mount("#mon-compte");
}