Discussion icon indicating copy to clipboard operation
Discussion copied to clipboard

Vue.js discussion

Results 100 Discussion issues
Sort by recently updated
recently updated
newest added

I have this catalogText: { type: String, required: true } and get this error Invalid prop: type check failed for prop "catalogText". Expected String, got Null. even tho the docs...

So this is my current dilemna: http://jsfiddle.net/59yp3r4h/ If you look at the Fiddle, the height gets cut off (line 81 in the javascript). If you hit run, it gets it...

Hi, I want to change Component's template string dynamically. The component is already attached to DOM. Then I change the template at run time. I want that change to get...

Hi guys, i cant seem to figure out how to do a ``` v-on="scroll:scrollFunction" ``` Here is my code. http://plnkr.co/edit/R152f1tZTKeA3uC8ArRN?p=preview Does anyone know what's wrong? Thanks in advance! Cheers, Ralee

When you have a big application which have hundreds components, some of it is heavily shared by others, and some of it just a layout or a simple view. So...

Bootstrap4 tag has problem with @blur , node: v9.9.0 and npm: 5.6.0 But no problem with node: v7.7.3 and npm: 4.1.2 The code is: If change to , it works...

Hello! I love Vue and use it in almost all my profesional and personal projects! But now, I have a little problem. In my project, I have like 5k rows...

Hello, I'm not sure if this is the question directly relate to Vue or JavaScript, but as it involves 'refs' from VueJs, i have posted question here. I've multiple input...

Hi I'm trying to use v-if with the child components but it's not working. My code: `` `` `` but it works if I use div instead of my component...

Hi, I would like to keep my data in a single place, let's say an object that is external to Vue: ``` js var data = { items: [{n: 1},...