Posts by Temístocles Arêa • 61 points
4 posts
-
-1
votes2
answers169
viewsA: How to load an image src url into Quasar/Vuejs
I was able to find a solution, Vuex itself has a global variable to access the url inside the plugin Axios: import axios from 'axios'; axios.defaults.baseURL = 'http://serverbackend:8765'; export…
-
0
votes2
answers169
viewsQ: How to load an image src url into Quasar/Vuejs
How do I load an image src template? I tried it this way <img :src="$axios.get(`/uploader/hotels/${hotel.photo}`)"/> but the result is a [object Promise] with strange return:…
-
5
votes2
answers240
viewsQ: Specialization and generalization in databases and application development
I have a table Livros and I know that the specialization/generalization of books are Livros de Ficção, Livros de Drama and Livros de Suspense, for example. However, in the logical model, I don’t…
-
0
votes1
answer135
viewsQ: Insert v-for data into css class in Vuejs2
<template v-for="d in data" > <a :key="d.id" class="zone{{d.value}}" href="{{d.code}}" >{{d.name}}</a> </template> This example just doesn’t work, how can I pass the values…