Discussion
Discussion copied to clipboard
Vue.js discussion
Hi have a v-repeat on big object ``` javascript ``` I want to give href value dynamically based on the iteration of object in vuejs. The obj has a property...
Hi, I found what I believe to be a BUG. In the following code (`App` component), simplified voluntarly, we have an input preceded by a div containing a v-if and...
Consider the following, a two page application featuring "home" and "profile". The profile page requires an AJAX request to populate the template. http://jsfiddle.net/nps44dk9/2/ If the user navigates to the profile...
Hi, I can not find answer to problem in anywhere, its no possible to work with callback functions. I am using an API and it has event registration functions which...
Hi, I have the following scenario. I have a list of categories. Whenever I click one, I make an ajax request to get its subcategories. After that, I should render...
i dont want to use {{if}}/{{else if}}/{{else}} because the conditions inside big for loop, so each loop must check the conditions but the switch/case will save this issue. any suggestions/alternatives?
In https://github.com/yyx990803/vue/issues/1175 they were some brief mentionings about using [redux](https://github.com/rackt/redux) as a possible state management container. Redux is all about immutability so on every change it emits a completely new...
Hello im using bootstrap select plugin (http://silviomoreto.github.io/bootstrap-select/) I am able to initialize plugin on select elements and load data, the problem is that select options are being loaded through ajax,...
Hey guys, Can we do this in Vue: in **MenuItem.vue** file, I write this: ...... It's a little bit difficult to explain :) . What I want to do is...
I have the following data array that I need the size of: ``` { "users": { "asdasdasd": { "name": "Benjamin" } } } ``` using `users.length` returns `undefined.` Any ideas?