Questions tagged [vue.js]
The vue.js tag has no summary.
22 questions
3
votes
1
answer
178
views
Most simple way to design the map and collision of a PacMan WebApp game? (Vue.js) [closed]
I have a group project for my university in which we have to program a PacMan WebApp game in Vue.js.
I'm currently working on the map design and the collision. Since I'm a beginner I am looking for a ...
1
vote
1
answer
150
views
Calling protected API from VueJS/Express via Access Token?
I'm trying to understand how Auth flows work within VueJS/Express Server to a protected API.
I have a situation where I need to call an API that is protected by JWT. To get this JWT, a client ID and ...
-3
votes
1
answer
107
views
How to engineer a "message read/message not read" fucntionality like the tchat apps or forums ones?
I am challenged to rebuild a support ticket manager app currently on legacy PHP code.
I plan to migrate to microservices + JS frontend technology like VueJS or React.
One of the app's page is a ...
2
votes
1
answer
236
views
Vue.js Two Way Communication Using Objects As Props - Is this an Anti-Pattern?
Typically the way to communicate between parent <-> child component in Vue.js is to send the child a prop and emit an event from the child, which is listened to on the parent.
However, if you pass ...
0
votes
3
answers
2k
views
In which scenarios is server-side rendering is better choice than the front-end JS libraries like React, Vue, Angular etc.?
As a Java developer, I just have scratched the surface of Javascript libraries like React, Angular, Vue etc. It seems that theoretically any web applications with server side rendering, like Spring-...
5
votes
1
answer
1k
views
How state stores are different from "global variables"?
Context: I am developing an amateur web application (with Vue.js), made up of components, and when reading about state management, the recommended solution is to use a store that gets updated by the ...
-1
votes
1
answer
495
views
How can I pass a large amount of data from a JavaScript client to the web server in bulk
I have a Vue/Quasar application that allows the end user to convert an Excel Spreadsheet into an Array and load it into a DataGrid. The Spreadsheet has a list of peoples names, email address, ...
1
vote
0
answers
173
views
Does the React (and Vue.js) frameworks support extensibility?
Please forgive me if I am mixing up the terminology here, I'm a bit unfamiliar with it. I wanted to find a way to support extensibility in a web application; I wanted a web application that was ...
-4
votes
1
answer
102
views
Which API building practice is better?
Im working on a ERP product, In which backend logics are to be APIs. Right now I have around
80 Tables.
Proposal 1: Creating CRUD APIs for all tables and manipulation of data to be handled in front ...
-2
votes
1
answer
79
views
Can a JavaScript SPA launch executables installed on the server?
Context
We have an application that is written in .NET and runs on a Citrix server. This app consists of shortcuts to external tools (like: DameWare, VNC viewer, mtsc.exe, msra.nexe, ...) that are ...
0
votes
1
answer
72
views
Documenting JavaScript types received from API in VueJS
I'm using VueJS and have data coming as json via web API. The API is strongly typed, but in my Vue component, I don't have a good way of knowing what the types being passed are.
Given the following:
...