Questions tagged [vue.js]
The vue.js tag has no usage guidance.
13
questions
-1
votes
2answers
70 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-...
0
votes
0answers
32 views
VueJS - How do I design a project that can handle multiple .env file
[Solved]
Answer link in the comments
Current Architecture
So, I have a large scale vue project that serves multiple types of users from multiple subdomains.
I maintain the project through netlify and ...
-1
votes
1answer
69 views
Allowing end users to upload a large amount of data using Excel
I've read Allow users upload CSV files, and embed the data for a simple API , Importing large data sets into a database over the web the closest concept is
Is there a way to efficiently allow a user ...
0
votes
0answers
22 views
I need help understanding how to deal with multiple authentications in a VueJS app
I have a VueJS app, which currently authenticates with JWT to a Spring Boot back end.
I would like to make use of Firebase, so I can take advantage of the reactivity it provides. i.e. instead of ...
-4
votes
1answer
68 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 ...
1
vote
2answers
101 views
Where should I put the .scss files in the scaffold?
I have developed an open-source vue.js scaffold which is based on my exprience and study on various vuejs
projects.
Currently it has a good structure(i think), but i'm nervous about is it good ...
-2
votes
1answer
47 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 ...
1
vote
0answers
97 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 ...
6
votes
1answer
2k views
How & Should we use Clean Architecture in Front-end?
Just a little explanation:
"I'm used to be a solo front-end developer in my company and using default folder-structure and way of coding which vue-cli provided, it is good for a solo developer and ...
3
votes
1answer
227 views
VueJs - composing components for large scale projects
I started getting into VueJs and Vuex development and I'm looking for a "mainstream" architecture for large scale projects. I think the question doesn't depend on whether you take a ready to use UI ...
0
votes
1answer
46 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:
...
1
vote
1answer
152 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
0answers
41 views
Why does Vue.js rename / move all the internal data elements?
I'm following the code from Vue.js in Action, Chapter 3.
(much deleted for brevity...)
var webstore = new Vue({
el: '#app',
data: {
sitename: "Vue.js Pet Depot",
showProduct: true,
...