Skip to main content

All Questions

Tagged with
0 votes
0 answers
34 views

My Vue porperties are not reactive in html

I have a function that I updates the Vue properties as you interact with the UI, Now My properties are being update and when I console log the result they indeed update but they don't update on the UI ...
MAXWEL OCHIENG's user avatar
0 votes
1 answer
47 views

When practicing props in Vue props aren't going into the element? [duplicate]

I have been trying to learn Vue and can't get props working correctly. Props I pass in continue to be undefined and I can't seem to figure out why <html lang="en"> <head> <...
jonlev03's user avatar
0 votes
1 answer
257 views

Can you help me to fix props in vue?

I recently started using vue, the code in App.vue is In line two of the above code I passed a string which is hello as an attribute which get captured in below code App.vue: <div class = "...
OpOp_1's user avatar
  • 81
0 votes
1 answer
1k views

How to change contents of a column in each row of a table without using a props in Vue.js (Element-ui)?

I am stuck on this problem from quiet sometime. I have created a table with 3 columns out of which the for two columns I can use prop property to display the contents of each row for those two columns....
skate_23's user avatar
  • 487
0 votes
1 answer
36 views

Image URL not entering into a Vue component?

I am trying to make a vue tag component and I'm not able to throw the source to the template html <card aposter="assets\images\poster.png" aname="a title"> </card>...
Nyll's user avatar
  • 49
1 vote
1 answer
1k views

VueJS select object from list and display with function

I need to get the element I click which is displayed in a list. And print this element on a method which is on my vue instance throug mail-list tag which is on index.html So I have Vue component ...
Victor's user avatar
  • 31
0 votes
1 answer
115 views

Using props in vue components

I'm just learning Vue, and now starting with props. I'm having trouble integrating them into my code below. I want to make so a prop name can be sent to the greet component. I want name to be shown ...
user avatar