13,666 questions
Advice
0
votes
1
replies
27
views
Best practice to switch between development and production urls when using Vue/Vite and Django
I want to build a website with Vue/Vite as frontend and Django as a backend.
When my frontend needs to get data from the backend I currently do something like this (which works perfectly fine):
const ...
0
votes
0
answers
36
views
Using a prop in an import statement in Vue, using Laravel and Inertia?
I'm trying to dynamically load only specific icons from the lucide-vue-next package in my vue page, however it's not wanting to work. I'm using Laravel 12 (Latest), Vue3 (Latest shipped with Laravel), ...
0
votes
0
answers
25
views
Vuetify v-data-table fixed-header: rows visible behind rounded header when scrolling vertically in Chrome
How can I clip table rows under a header with rounded corners when scrolling?
When the table scrolls, the rows slide under the rounded corners of the header. Since the rows have regular (non-rounded) ...
0
votes
1
answer
99
views
VueJS blank page [closed]
I'm working with Laravel 12 (with Breeze), VueJS, Debugbar, all in their newest versions. My server is running locally on my MacBook, and developing on this MacBook works fine. The app works correctly ...
0
votes
0
answers
28
views
Quasar build not displaying .webp images after deployment (but files exist in folder)
I’m building a website using Quasar Framework (Vue), and I’m having trouble with .webp images after deployment.
Everything works perfectly in development mode.
When I run quasar build, the .webp ...
0
votes
0
answers
24
views
Vue component: Watch on Prop does not trigger for type Number
I have a component declared during Vue.createApp(). This component is for a result list and receives the result itself and that result's index in the array.
Vue.createApp({
data(){
return {
...
0
votes
1
answer
51
views
Using v-model for nested form?
It's very well possible this isn't meant to work, but I'm trying to learn Vue and fail to make a nested form. The usecase is that I want my user to order various amounts of different types of tickets;
...
0
votes
1
answer
56
views
Why does my watch not trigger when a Pinia store value changes?
I’m using Vue 3 with Pinia, and I’m trying to watch a store value so that every time it updates, a function runs. But the watcher never triggers. The watcher does not fire at all. I tried using both ...
0
votes
1
answer
57
views
How do I enable stylesheet source maps in dev mode for VueJS+Vite (>3.0)?
I've setup a new VueJS project using the default scaffolding method npm create vue@latest (which right now is Vue 3.5.22), that uses Vite under the hood.
I want to use Sass for my stylesheets, and I'm ...
Best practices
0
votes
2
replies
49
views
Godot for web: multiple pck, one engine init?
Question
I’m re-developing an old website where there was flash games in it. I redeveloped some games, all under godot, and I rebuilt Godot from source to disable unwanted modules (like 3D physics for ...
0
votes
0
answers
26
views
I get an error while building browser extension building vite vue
On npm run dev:
[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "D:/Programing/TechScale/extensions/Weather-Bears-Ext/node_modules/...
Advice
0
votes
0
replies
38
views
How to customize the delete icon on Naive UI's NUpload component with list-type="image-card"?
Good day developers!!!
I'm using Naive UI with Vue 3 and I'm trying to replace the default "delete" (trash can) icon on the NUpload component. This problem seems to only happen when I use ...
0
votes
0
answers
40
views
How to configure urlPrefix in @sentry/vite-plugin to map CDN-served assets to Sentry sourcemaps in Nuxt 3 + Vue 3
I'm building a Nuxt 3 application (using Vue 3 and Vite as the default builder) and integrating Sentry for error monitoring with sourcemap uploads. My build artifacts are uploaded to a CDN (e.g., AWS ...
1
vote
2
answers
182
views
Backend Laravel api and frontend vuejs works in dev but not in production on a shared hosting
I am trying to deploy an application on a shared hosting (LWS).
My app uses Laravel12 as a backend and Vuejs as frontend
The frontend is installed directly on the domain.fr and the backend on a ...
-1
votes
1
answer
64
views
Empty bar chart in Vue-ECharts despite working in ECharts playground
I have a simple template with a bar chart that doesn’t render properly in Vue-ECharts, even though the exact same options work fine in the ECharts playground. There are no console errors — the chart ...