Questions tagged as 'vue.js'

0
answers

How to configure Laravel in heroku?

Greeting for all, I put a Laravel project in Heroku, and I can configure the database with my Laravel project, or if I can, to migrate the database using the php commands in heroku, to be able to make the settings correctly for it access to t...
asked by 27.10.2017 / 16:32
0
answers

How to limit the upload of an image by its size in pixels?

I'm doing an application with VueJS and I have an image upload input and I want to set a size limit of image to upload, not in KB or MB, but rather based on its pixels ie only allow upload if the image respects the pixel limit. Eg 320x280...
asked by 04.10.2017 / 20:26
0
answers

Doubt over extended layout of Vue.js

My question is very long and I believe that with a video on Youtube it is easier to understand my problem: My issue This is my repository without the changes: My repository Image of the error; Base.vue<template><div&...
asked by 03.10.2017 / 15:16
0
answers

v-model no component

I'm trying to use v-model inside a component but it does not work. Code main.js, which will have the information used in the v-model: import Vue from 'vue' new Vue({ el: '#app', data: {fields: {name: 'Vittar', age: 24}} }) My compone...
asked by 30.10.2017 / 18:23
0
answers

Routes in separate files with VueJS

How can I create routes in separate files in VueJS? Home I currently have this folder structure |- main.js | |- Grupos |- grupos.vue |- Artigos |- artigos.vue main.js import Vue from 'vue' import VueRouter from 'vue-router' Vue.use...
asked by 02.10.2017 / 15:50
1
answer

I can not show data with the vue js

I can not show data with vue js, in my html I have: <div class="panel"> <div class="panel-body"> <div class="col-md-3"><img src="../images/aeracao/produto.png" alt=""></div> <div class="c...
asked by 27.09.2017 / 20:44
0
answers

VueJS Select Multiple Array Undefined

I have a Rest API that returns me CategoriaList and CategoriaSelected . It is conflicting when I do with Select Multiple on HTML Categories.vue <template> <select multiple class="form-control" v...
asked by 28.09.2017 / 22:32
0
answers

Which Front End Framework should I invest [closed]

I have seen many posts and comments without counting innumerable job vacancies that require different FrontEnd frameworks like Angular (JS, 2, 4), ReactJS, VueJS which because of the readings I have done seem to be all able to solve the same pro...
asked by 19.10.2017 / 10:01
0
answers

Expression error in Vue.js with filterBy

This is the snippet of code that has a problem; <div class="well"> <input type="search" v-model="MySearch" class="form-control" placeholder="Search"/> </div> <div class="row"> <ta...
asked by 21.09.2017 / 12:29
1
answer

Error: Can not read property 'protocol' of undefined

Template: <input type="text" v-model.trim="enterURL" placeholder="Enter URL here" @keyup.enter="Entered"> <v-btn icon @click.native.stop="Entered"> <v-icon>send</v-icon> </v-btn> Script: Entered(enterURL)...
asked by 19.09.2017 / 19:05