Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
32 views

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; ...
Alexandria Douillette's user avatar
0 votes
1 answer
39 views

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 ...
Quentin's user avatar
  • 1,173
0 votes
0 answers
21 views

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/...
Syed Ali Ahmad Rizvi's user avatar
0 votes
0 answers
33 views

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 ...
Lokesh B's user avatar
-1 votes
1 answer
49 views

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 ...
Primoz's user avatar
  • 1,534
2 votes
1 answer
92 views

I have a component which needs some external data (API) to fill some content in the template through asynchronous functions. I reduced it the more I could and renamed some variables for better ...
LeSmoox's user avatar
  • 69
1 vote
0 answers
56 views

I have a list of vue 3 editor components, that I dynamically display based on the "page" the user is currently on. Currently they are stored in a Component[], but I would like to make sure: ...
ST-DDT's user avatar
  • 2,727
0 votes
1 answer
35 views

I'm building a Vue 3 app using PrimeVue 3.52.0. I have a DataTable with reorderable rows and columns enabled via the reorderableColumns and rowReorder props. On desktop browsers, drag-and-drop ...
Abraham's user avatar
  • 109
0 votes
0 answers
80 views

I’m trying to insert streamed Markdown chunks into a TipTap editor using Vue and tiptap-pagination-plus. The issue is that when the streamed content causes a page break, TipTap adds unwanted ...
fabricio Roberto's user avatar
0 votes
0 answers
23 views

I'm using @jspreadsheet/vue in my Vue 3 project. When I load table data and set some columns with visible: false in the columns array, those columns are still displayed in the table UI. I expected ...
melon's user avatar
  • 1
2 votes
0 answers
76 views

I have encountered a problem with the DataTable component from the Primevue library. When I assign pagination to a table and set several frozen columns, if I switch the number of rows displayed in the ...
DZN's user avatar
  • 1,658
0 votes
0 answers
47 views

I have a Pinia store defined like this: export type Era = { id: number name: string start_year: number end_year: number item_count: number } const settingStore = { eras: ref([] as Era[])...
Steve Bennett's user avatar
0 votes
0 answers
63 views

I’m using Laravel 10 with Inertia.js and Vue 3. In my controller, I return a page like this: use Inertia\Inertia; use App\Models\User; public function dashboard() { $users = User::all(); ...
WILLIANS HERIBERTO NAVAS REYES's user avatar
1 vote
1 answer
34 views

I'm working on a Vue 3 (Composition API) component where I want users to edit fields by clicking on a text element, and the corresponding input should automatically receive focus. Here's the expected ...
DevMoutarde's user avatar
0 votes
0 answers
62 views

I wanted to add the placeholder-module in my quill-editor. I have installed the quill-placeholder-module. Whenever I tried to register it in OnMounted, it throws an error: index.ts:35 quill Cannot ...
trap's user avatar
  • 2,650
0 votes
1 answer
94 views

I have split my Vue.js project into two parts: The frontend is a Vue app, which I successfully deployed to Netlify, and it works fine. The backend is a simple Node.js + Express server that I want to ...
Haitam Jebari's user avatar
0 votes
1 answer
108 views

I'm making a custom map for leaflet using vue 3. It only loads 4 tiles in a row( loads more tiles when i zoom, but within that same area, equivalent to the initial 4 tiles) - it does seem to load more ...
RedMur's user avatar
  • 11
0 votes
1 answer
99 views

I've set up a front-end environment with Vue.js, Vite, and Vue Router. When I navigate between pages, the scroll position is remembered, causing the new page to start at the previous location instead ...
HISTIGMA's user avatar
1 vote
2 answers
42 views

Still up the learning curve. I have this progessComponent that acts like a common utility for other components. As the name suggest, it tracks the progress of an activity progressComponent.js import { ...
joseph son's user avatar
0 votes
0 answers
119 views

Im hoping someone can help me out with this as im struggling to find the right docs to read on how to do more complex, I dont even think its that complex, validation rules. I have two fields ...
eyebonk's user avatar
  • 67
0 votes
1 answer
79 views

I'm having trouble with an ASP.NET Core 8 MVC app with vite vue. My app runs locally in which I mound in a cshtml div id= app all the vue components. Locally the vite server runs and everything is ...
Soufien Hajji's user avatar
0 votes
1 answer
152 views

I have a website that runs an onnx model (pre-optimized to .ort format) on the client via ONNX's web runtime. I must also stick to an old version of onnx (before 1.19.0), because the support for non-...
ph3rin's user avatar
  • 4,948
0 votes
2 answers
44 views

Trying to upgrade a project that is a couple of years old that uses vuex as store to the latest version of Vue3 with Vite and Typescript. Now stuck on an issue with getters calling other getters. This ...
Leo's user avatar
  • 43
0 votes
1 answer
57 views

Suppose a simple Vue.js component: <template> <RouterLink to="#">AAA</RouterLink> <RouterLink to="#">BBB</RouterLink> </template> I cannot ...
MaxPowers's user avatar
  • 5,529
0 votes
2 answers
72 views

After I upgraded from Laravel 10 to Laravel 11 using Laravel shift tool I noticed a change using route(routeName) in my Vue3 templates. Example: <template> <div> {{ route('...
A.W.'s user avatar
  • 3,055

1
2 3 4 5
274