13,799 questions
-4
votes
1
answer
44
views
Each entry displays "Entry added X seconds ago" where X is the amount of seconds
I'm breaking my head to perform something like this: a message log where some actions are posted and I wanted to implement a feature to the log that displays how many seconds since the log entry was ...
0
votes
1
answer
28
views
Vue 3: Customize Bootstrap 5 via SCSS?
I am writing a Vue 3 application, and would like to use Bootstrap 5 as the CSS framework. I'd like to be able to override some of the variables for customization. I've followed a couple tutorials I ...
0
votes
1
answer
23
views
How do I build Vue+Vite project that contains web worker and WASM?
In my project, I have a web worker at ./src/test.worker.js that looks like this:
import("mywasm").then(wasm => {
self.onmessage = event => {
const { x, y } = event.data
const ...
1
vote
0
answers
34
views
globalProperties variables are not showing up in the Vue 3.5 template
IDE: Webstorm 2024.1.5
My app on Vue 3.5.13, Vite, Typescript. I have plugin
export default {
install: (app: App) => {
app.config.globalProperties.$i18n = useI18n;
},
};
I plug it in main....
0
votes
1
answer
16
views
vuetify hint property not working with my VUE3 setup
I have quite a simple form in a VUE3 app. I'm using Vuetify and its working fine in all the pages and components I have written. But today I wanted to make use of the hint attribute on a v-text-...
0
votes
0
answers
23
views
Pusher is not a constructor after npm run build with Vite, Laravel Echo, and Pusher-js
I'm using Vite, Laravel Echo, and Pusher-js in my Laravel + Vue 3 project. My setup works perfectly in development with npm run dev, but after running npm run build, I get the following error in the ...
1
vote
0
answers
15
views
Nuxt 3 + Pinia: Plugin API undefined inside store
I'm building a Nuxt 3 frontend that talks to a separate backend.
I want to structure my API calls using the Repository Pattern, based on this article. I'm using vue3 composition API with typescript (...
0
votes
0
answers
48
views
Inherit a Component and "Append" Content to Its Slot
Does Vue 3 support something like this? the super() part
(The situation is that I can't modify the base component, but I want to extend it with extra content.)
ComponentA.vue
<template>
<...
1
vote
1
answer
26
views
Vuetify when dialog opened from menu item. Dialog opened, but menu still appear
<template>
<v-menu>
<template v-slot:activator="{ props }">
<v-btn color="primary" v-bind="props"> Activator slot </v-btn>
&...
1
vote
1
answer
46
views
Tailwind@4 can no able in Storybook@8
I have created a new vue3 + Vite, Storybook project.
"@storybook/vue3": "^8.6.12",
"@storybook/vue3-vite": "^8.6.12",
"vite": "^6.2.0",
...
-1
votes
0
answers
31
views
PrimeVue Design Not Working in Laravel + Inertia + Tailwindcss + Vite Setup (Aura Theme)
I’m working on a Laravel 11 + Inertia.js (Vue 3) project and using PrimeVue for UI components. I have installed PrimeVue and am trying to apply the Aura theme from @primeuix/themes. However, while the ...
0
votes
1
answer
64
views
How to fix MDI icons appearing as weird characters (symbols) after deployment, using Vuetify and Vue 3?
I am having a render issue with mdi icons appearing as some symbols instead of actual icon usually after deployment (in production environment only) when the tab is opened for some time.
Problem ...
0
votes
0
answers
13
views
Nuxt3 Project on Vercel - How to listen for a webhook and communicate back to client?
I've run into a bit of a problem. So I have a webhook that is making a POST call to an endpoint I have set up in my Nuxt project. We submit data, the webhook calls the endpoint when status has updated ...
-1
votes
0
answers
24
views
Select nodes with empty children array in v-TreeView
I am using load-children property & setting children array to required array only when drop down is clicked. Using this because TreeView is breaking when large data is passed. But when I click a ...
0
votes
0
answers
20
views
Make my IDE recognise methods from VUE mixin returned by a function
I use mixins retuned from a function,
mixin: [getMixin({})]
function getMixin(config) {
return defineComponent({
mixin: [myMixin, myOtherMixin]
})
}
but WEBSTORM fails to ...