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
2
votes
1
answer
141
views
Thumbnail caption in vue.js with possibly missing fields in caption
I am using the following to output a thumbnail with text. It works fine but I don't like having the use a conditional to check every prop before outputting.
E.g. this.post.user.name would indicate "...
3
votes
1
answer
1k
views
A JS Tree Viewer in VueJS
To learn Vue.js I have made a tree viewer with the code below. Can anyone give me some advice on how to improve the code?
...
2
votes
1
answer
4k
views
Custom checkbox validation on submit
I have the code below which is working as expected. It is doing a form validation with Vue.js and Vee-Validate. It is checking that at least one checkbox is checked.
I only don't like that I have to ...
1
vote
2
answers
307
views
Vue GitHub user lookup
I have made a small Vue app which fulfills the following user stories:
Given I make a search for an existing GitHub user, then:
The user's username is shown
The user's avatar is shown
The user's most ...
3
votes
1
answer
329
views
Present table of data, acquired from an endpoint, with option to sort by different values
I have built a Vue app which fetches data from an endpoint and presents that data in a table with sortable columns.
The app is based on this React challenge which is to create a table of users and ...
1
vote
1
answer
521
views
Displaying a conflict marker
I'm displaying a conflict marker for each actor for each day, if the current day is in their conflicts:
...