Questions tagged [vue.js]
Vue.js is an open-source JavaScript framework for building interactive web interfaces. It creates data-driven user interfaces with a simple and flexible API.
106 questions
-1
votes
1
answer
1k
views
Try-catch-finally snippet [closed]
Using visual studio I created a snippet which helps me surround my already written or new code into a try-catch-finally block. I use axios for REST so there had to be separate error handling method so ...
-1
votes
1
answer
28
views
How do I distinguish the difference in naming and file structure between components and mobile components in React? [closed]
Here is my example structure:
.
├── App.jsx
├── index.js
└── src
└── components
├── Button.jsx
└── Header
└── Header.jsx
Question:
...
-2
votes
1
answer
89
views
JS - Same recurring statements in if-else
I have this watcher in my app.vue that makes sure the right theme attribute is set on the ...
-2
votes
1
answer
114
views
Missing header in the UI - Vue.js [closed]
I need my h1 to show below my for my checkbox. It is inside of the div. Should I maybe put it outside of the .
The missing is below the Organization Fields header. It is suppose to display below ...
-3
votes
1
answer
130
views
Is there a means to combine the similar chunks of Vuejs code shown below? [closed]
I am currently working on a project and very recently came across Vuejs. I used it to create a dynamic form on my frontend, however, the approach I took does not seem right to me. Could someone take a ...
-4
votes
1
answer
119
views
Simple Vue calculator [closed]
I made conditional calculator in Vue js but I need help to make it more efficient.
https://jsfiddle.net/wbrx9cyp/1/
example of code:
...