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.
61
questions
-2
votes
1answer
20 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 ...
0
votes
0answers
26 views
Vue.js v-if for a checkbox selection of data from a csv
I'm creating an option checkbox for an Organization data only if they have Organization data to submit from their CSV. I am creating a <div> and my ...
-2
votes
1answer
26 views
Laravel 5.7 looping and creating columns on each row [closed]
I want a method that post from the route in my submitFiles() Javascript that will loop through and create a contact, account name, organization for each row , using the column names associated with ...
-1
votes
0answers
18 views
Vue.js + Axion. Difference in performance between async/await and promises [closed]
Is there any difference(in performance or any other kind) between code:
...
3
votes
0answers
32 views
Vue component for Game Die (dice)
As part of learning Vue and Vue Test Utils I develop some simple games. I made a simple version of craps. Because in many other games a die (or dice) is used, I decided to create a reusable component <...
3
votes
1answer
49 views
How to make this code for efficient and better looking?
I know that if you are using too many if else statements there is a better way, I hope. Please help me learn, thank you everyone. I tried to think of a better way but just couldnt come up with ...
1
vote
0answers
16 views
Editable Data Table for Assigning Helpers to Drivers
I am just learning Vuejs and I am implementing it in a 'legacy' environment where jQuery, Bootstrap 3, among other libraries are loaded by default. In my implementation I try to keep it simple with ...
1
vote
0answers
40 views
Ecommerce site shipping data
I have REST API written on laravel and front end on vue.js. It is a dashboard for an ecommerce store where you can connect to post shipment service API to upload order shipment data and get tracking ...
3
votes
0answers
49 views
Resizable containers with VueJS
I reviewed the code in Resizable split DIVs Vue.js, suggesting that the OP use computed properties and bound styles to simplify the code (at least reducing the need to use ...
6
votes
1answer
121 views
Resizable split DIVs Vue.js
I just started Developing Web App (Vue.js) for my company for around 1-2 months. Therefore, my knowledge and experience in HTML, CSS and Javascript is kinda shallow.
I've created a custom resizable ...
3
votes
2answers
96 views
Health Test App, It Returns a Score Based on the Answers Given
Here is my parent component: App.vue. I was wondering what improvements I could make to the code here.
Application Description
This application was built off the Vue.js framework and utilizes a
...
-1
votes
1answer
136 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 ...
4
votes
1answer
74 views
Grid layout component for VueJS
I'm working on a vue.js / nuxt.js project, applying the Atomic Design methodology, I need to do one to set the grid layout and using CSS Grid Layout.
I already did the component, but I think I did ...
0
votes
1answer
37 views
Repetitive then/catch method on Javascript [closed]
I have this function and looks ugly because there are a lot of "catch" doing the same. Any idea how to make it better?
...
2
votes
1answer
46 views
Rendering JSON arrays of unequal length as a table
I have a website where my users can create "table-like" layout dynamically. So imagine that my users can upload a text document, and then append columns to the document, and the output will then be ...