Questions tagged as 'vue.js'

1
answer

Do not reassemble columns in the bootstrap grid

How to make grid boxes appear correctly without overlapping. Considering that the height of them will be variable, because the content is dynamic. new Vue({ el: "#app", data: { title: 'Boxes dinamicos sem encavalamento', itens...
asked by 25.10.2016 / 13:46
1
answer

How to update the data from a vue 2 directive?

How can I perform the following procedure to update data from a policy in vue. var select = Vue.directive('select', { twoWay: true, bind: function(el, binding, vnode){ // Como acessar op ????? // this.set() } }) new...
asked by 25.11.2016 / 23:05
0
answers

Access VUE data model by another script

Well I have a data model with the following information in vuejs graficos: { data : { labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri'], series: [ [5, 2, 4, 2, 0] ] }, options : {...
asked by 04.11.2016 / 02:02
0
answers

V-Model giving problem in Components

Hello, I'm new to VueJS and I'm doing a chat following a tutorial. In the tutorial the teacher inserts a v-model into an input into a component and it's all right. When I do this, the component is not rendered on the screen, and the console resp...
asked by 30.10.2016 / 06:58
1
answer

Problems with assets coming from a JSON - Vuejs with Webpack

Talk about people, beauty? Can anyone give me a help? I have the following folder structure: Asmyapplicationissimple,I'mnotdoinganythingconnectedtothebank,I'lldirectlyconsumeaJSONfilethatwillhavetheinformationtopopulatemyscreens!Incaseofm...
asked by 12.07.2016 / 07:51
1
answer

Error in render: "TypeError: Can not read property 'phone' of undefined"

I'm using Vue.js and I came across the title error. I have an array object: students[ contact: { mobile: null, phone: null } ], The contact array is not always populated. How do I n...
asked by 14.08.2018 / 15:59
1
answer

VUE value filter in v-for

I have the following array of objects below. I need to list in a v-for only the records where the variable parent is equal to 4 , and I'm not getting it. Code: this.full_category_list = [ { id: 1, na...
asked by 25.10.2018 / 18:59
2
answers

Get current date with Vue

I need to get the current date and format it of the following type:    December 17, 2018 I'm using the date within a project in Vue. The only reference I found was this however it is in pure javascript. Has anyone ever had to do s...
asked by 17.12.2018 / 12:52
2
answers

Vue.js: how to format a value in a v-model?

I have the following problem, I need to format a value of an input, directly when the user is filling the field (@keypress or @input). When I use the method to format out of the input it works, however if I try to use with the v-model I belie...
asked by 29.08.2018 / 17:01
1
answer

Error in vue.js filterBy

I'm using vue.js in my application and would like to filter information with filterBy HTML <html> <head> <title>Vue Application</title> <link rel="stylesheet" href="lib/css/bootstrap.min.css...
asked by 27.02.2018 / 23:41