Request to backend php server [closed]
I am using vue.js + PHP to make a task manager. I am wondering how can I send a request from vue to backend PHP.My project structure The problem is how can I set route for my backend php server, to ...
I am using vue.js + PHP to make a task manager. I am wondering how can I send a request from vue to backend PHP.My project structure The problem is how can I set route for my backend php server, to ...
I'm trying to get vue-grid-layout to work with vue3 and vite. I'm quite new to the world of vue, and the only information I can give is that my project is not working. Why that is, I can't tell since ...
I am using vuex and in my setup I call dispatch then the getter. When I refresh my page the getter always is called first and I am not sure how to change using async await so the getter only fires ...
Our team is facing a problem with too much logics in template file which causes colleagues hard to debug. I am thinking a proper way to increase the readability of the template file without losing ...
I am working on a vue.js project(version 3). I come to a situation where I want to use the rendered HTML view of a component to my current component's method. I created the following SVG component in ...
I wrote hello world vue js 3 simple Programme. then it gives following error. I want to pass vue property value to HTML value. but it doesn't work . please help me to resolve this . package.json { &...
/src/pages/files.vue Why is my event listener not being added? document.getElementById("import-file")?.addEventListener("click", () => { console.log("Import File!"); ...
I'm looking for a good and reusable approach to access possible existing nested properties (nested object and array of objects) inside an error object without typeErrors. I have a createCompany form/...
I have a computed value emptyRowsRemoved derived from the Reactivity API. I need to iterate over this value. But because computed() returns a proxy, I am no longer able to iterate over it with a ....
I have vue instance which is vue 2. The code is below. It seems add axios to prototype then return new vue. (function () { define('newVueInstance', ['axios'], (axios) => { let newVueInstance =...
I was working on a project by using vue3, vue-router4, and I met with some problems in the newest vue and vue-router. In vue2 and vue-router3.0, when I was dealing with nested router, I made a HOC ...
event when select start and end date date is picked v date picker not calling input <v-date-picker v-model="date" is-range color="green" trim-weeks ...
I am using Vue3 with the composition API. I have set up a store (not using VUEX) to store global settings. I have a sidebar that I want to expand or collapse. I first put all of the code in one ...
I have a reusable Badge component. I want to be able to add a close/delete button when an onDelete event listener is present on the component instance. <template> <div class="flex ...
I have a reusable Badge component. I want to be able to add a close/delete button when an onDelete emit is passed by the parent component but I can't find how to check of this. <template> &...
i get error,when i move init vue-router in nested file: error string: SyntaxError: The requested module '/src/main.ts?t=1639488783031' does not provide an export named 'router' someone had a similar ...
Im using vue3, and bootstrap 5. I want to add a datepicker to my app. The datepicker was in bootstrap4, but it appears to me that bootstrap5 doesn't have it. I'm suprised that its not there, I don't ...
<script setup lang="ts"> const {a,b,c,d,e,f,g,...h} = useTest(); // useTest() return a lot of fields; </script> I don't want to list all the fields; How to use spread operator ...
I've tried to figure out what is happening with this one particular page I have as I get a list of warnings and an error every time I load it [Vue warn]: Unhandled error during execution of render ...
I am fetching markdown from a database: const state = reactive({ content: "" }) axios.get('/legal') .then(res => { const data = res.data ...
We building a vuejs app. I read a lot of issues in case of SEO pages, and the best solution is to mirgate the app to nuxtjs and create SSR SEO pages? Is this the best way or other solutions? best ...
I have installed i18n in vue 3 https://vue-i18n.intlify.dev/introduction.html and I want to load the json files lazy. In the app.js const i18n = createI18n({ legacy: false, globalInjection: true,...
In my Laravel 8 project I have the latest vue 3 and "laravel-mix": "^6.0.39", "laravel-mix-polyfill": "^3.0.1" installed. In my resources/js/app.js file I have ...
I want to make a method that when executed will check all inputs that have images and text, where this method will run on the input checkbox with the label Select All, which when select all is checked ...
Copyright © 2020 vuejscode.com