108,131 questions
-5
votes
2
answers
1k
views
how to declare multiple variables with the same value
in order to prevent creating every single variable with same type I declared them this way:
data () {
return {
today,tomorrow: new Date(),
};
},
all I get in my intellij ...
-5
votes
1
answer
146
views
Nested object in Vue.js
I have json object and i don't know how it looks, it can be nested. How to display this object with nested objects as li elements. I try to find and I can't find proper answer.
-5
votes
3
answers
661
views
How do I make a slideshow survey with Vue.js
I'm wanting to make a survey like this: https://takecareof.com/survey/new in vue. I don't need any of the animations I just want the slideshow part. I'm not sure where to start.
-5
votes
1
answer
375
views
why can i not call a function of my vue component in my callback [closed]
i am use datatables and jquery in vue and
> <script>
> export default {
> methods: {
> ddd() {
> alert(44444444);
> },
> },
> ...
-5
votes
1
answer
59
views
How to randomly render products after get API to obtain data in Vue? [closed]
this.$http.get(api).then(response => {
vm.products = response.data.products;
});
If i have data about products and i want to randomly render products what should i do?
-5
votes
2
answers
68
views
array data filter to data
i cant filtering my data
array list is like this:
{uid: 11111, 22222, 33333, 44444, 55555, 66666, 77777 }
and i want filter like this:
filterdData: {
{'index':1 , 'uid':'11111' } .....
-5
votes
1
answer
80
views
How to show refreshed value from an array
My problem is in showing the values of the object.
The table shows the tasks and the remaining time to finish. But it does not update the countdown timer ...
The values are in an Object in Task ...
-5
votes
5
answers
51
views
Consolidate array based on common property value
I'm writing a small little app powered by VueJS and ExpressionEngine that displays a golf tournament leaderboard. A tournament can require that you play more than one course. The data coming out of ...
-5
votes
1
answer
289
views
How to compile JS, CSS and HTML code into vuetify?
I am trying to build a website using vuetify and I want to build a Contact Form. I am using this github repository.
https://github.com/jcottrell/vue-example-contact-form
How do I compile this into ...
-5
votes
2
answers
126
views
Getting Randomly 30+ seconds Delay
When i make API request, sometimes i get unusual response times. More specifically 30+ second delay. After some troubleshooting, i got that Transfer Start or (TTFB) takes upto 30+ seconds randomly. ...
-6
votes
1
answer
1k
views
how to make a maximum 1MB upload image?
how to make a maximum 1MB upload image?
here are the program snippets
-6
votes
2
answers
2k
views
How to make my website load faster built with laravel vue js [closed]
so I just got hired , and I was giving the task of optimizing a new site they want to launch soon , https://bizguruh.com , so far I have tried everything I can,reduced image size, but it doesn't ...
-6
votes
1
answer
331
views
how to download the image in vuejs but i am getting the respone as this i am using the following below code
�PNG
IHDR{{cM�PLTE�$���� %�~��y�$��� ������z{��������X[�����FI��������������b�14����������pr�<?�!��#� ���Ŏ���7XP������JJJ###rrr���@@@D
) �b222_]]���m�Z��ZIDATh�śk[�:�{I�jN�E����rTtAPq����ɥMR�...
-6
votes
2
answers
715
views
Passing Vue data to php
I want to pass a data from vue props to php code. My code looks something like this:<input type="text" value="" @{{props.correct}} class="d-none" name="correct">
-6
votes
1
answer
71
views
How can I filter API?
I'm using the movies API and I want to make it that my page shows specific movies only.
I want to filter the API to show only latest/new movies that are going to come out. How can I filter API so ...
-8
votes
2
answers
2k
views
Automatically open downloaded file
I'm using VueJS/Axios and have to implement a download file button.
My client requirement is when document is downloaded, it should automatically open with an appropriate program on the user's ...