I'm developing an email application and the front end is being done in VueJS / Quasar Framework and the server is being developed with HapiJS.
I've already been able to send simple emails using NodeMailer , and I'm listing them in the inbox...
I have a project that requires the client side to use Vue.js to render application views, but on the server side it is intended to use ASP.NET MVC Core to validate all business rules.
Is there a way to integrate both technologies?
I'm having difficulty making settings for the component using jquery in vuejs2.
<div id="app">
<date-picker @update-date="updateDate" timepicker= "false" v-once></date-picker>
<p>{{ date }}</p>
&l...
I'm developing a console with HTML5 + Vue to streamline some simple commands.
The inserted command comes via a textarea with v-model="cmd" v-on:keyup.enter="consoleMode()" .
I'm using else else, since I only need 4 functions.
conso...
I found a code at a time and modified it in pure javascript. It worked right. But now I have to do something similar to what he does in vue. The problem is that I'm half-new in the vue and have little time to finish.
NOTE: Basically the funct...
I'm having a problem trying to use JSPdf with Vuejs. I've taken an internet tutorial ( this one ) that shows
methods: {
GerarPdf(){
let source = $('#div')
let cache_width = source.width()
let a4...
I have a REST service to fetch visitor values. However, I can not manipulate the values coming from the service outside the promise .
export default{
data(){
return{
visitor: {}
}
}
}
created(){
this.VisitorService.show(...
Good Morning Sirs. I'm having a little difficulty with Vue.js, I want to understand how I can put the "active" class in a li element according to the currently active route.
I have a menu that is dynamically generated through a Loop in...
import * as types from './types'
export default {
// -=-=-==- OK -=-=-=-== //
//return first item
first(state, getters){
return getters.list[0];
},
//retorn all itens from my api
list: state => {
retur...
I have a php that delivers the following content
[{"Id":"50630","Operador":"","Id_cadastro":"61693"}]
The vue-resource only recognizes if I remove the []
My code is vue
this.$http.get('data.json').then(function(response) {
this.ce...