skip to Main Content

Laravel vue – forgot password

iam creating a forogt password in my website with mailhog. i can send the email link to the mailhog and i can receive the email in the mailhog which contains the reset password button which is supposed to redirect me…

VIEW QUESTION

Vue component not rendering in Laravel Blade

I have a Vue Component, that is simple like this: <template> <h1>Teste</h1> </template> <script> export default { mounted() { console.log("Component mounted."); }, }; </script> my app.js: require("./bootstrap"); import { createApp } from "vue"; import ExampleComponent from "./components/ExampleComponent"; const app =…

VIEW QUESTION

How to make button to be visible whole time and not to work only on click? – Html

<v-card :style="{ textAlign: 'left' }" class="basic-card pa-6" :class="{ 'small-padding': !$vuetify.breakpoint.xl }" elevation="0" flat :height="windowHeight - 104 + 'px'" outlined align="start" justify="start"> <v-row class="mt-0"> <v-col cols="12" class="pt-0"> <v-tabs v-model="eventTabs" center-active class="mx-0" grow> <v-tab v-for="(tab, index) in eventAssets" :key="index" :class="{ 'mr-1': index…

VIEW QUESTION

Firebase – How to call v-for variable to function

I am using vue3 and c_cid is important for me to implement the function. here is what I have. <div class="client_card" type="button" v-for="c in all_clients" data-bs-toggle="modal" data-bs-target="#add_delievery_address" > <div class="modal-footer" style="background-color: #1267aa"> <button @click="createDelieveryAddress(`{{ c.c_cid }}`)"> Submit Delivery Address </button>…

VIEW QUESTION
Back To Top
Search