Questions tagged as 'vue.js-2'

2
answers

Hide a v-for element with v-show

I need to hide an element from v-for with v-show. I have a list that populates a menu and I need to hide a certain element, can someone give me a light?     
asked by 18.12.2017 / 22:57
0
answers

VueJS Errors before API load

Is there any way I can ask VueJS to wait for a while before handling DOM errors? I have for example a select which receives a v-model from the API, but since VueJS loads the DOM first before the call http , it already a...
asked by 28.11.2017 / 13:04
1
answer

How to access one component within another?

I'm using single file components , but I can not access a component via another component, here's what I've tried ... <template> <div id="containerPrincipal" @click.stop="teste"> ... <template> <script> /*Out...
asked by 22.11.2017 / 17:43
1
answer

Vue compile when inserting in DOM

I need to insert a compiled element in DOM , however it will be inserted in a random place, not in a pre-defined place like this documentation ... var res = Vue.compile('<div><span>{{ msg }}</span></div>') new Vue...
asked by 20.11.2017 / 13:33