Talk, guys .. Blz? I have a question here. I'm developing a chat app in vue, and let's say I send or receive a message like this:
msg = "Oi, fulano. Acesse esse <a href="link">link</a> e digite <span>Meu nome é <a href...
I have a request for the backend and its URL is quite large.
this
.$http
.get('backoffice/usuarios/${this.id}/grupo/${this.grupo}/filial/${this.filial}/multinivel/${this.multinivel}')
.then(({ data }) => {
this.items = data
})
}...
I have a PWA that was built using VueJS and I would like to know if it is possible to display the installation banner more than once, since it currently only asks once if the user wants to install PWA.
I wonder if it is possible to display th...
I have a form inside a modal and I'm doing the validation of the fields (client side) using the plugin vuelidate .
I use the bootstrap-vue plugin to create the modal, but when I implement the validations of vuelidate, I can not do with tha...
I'm Dev RoR and I'm in my early studies with VueJS. To do so, I started creating an TodoList with Firebase for data persistence and a problem occurred to me.
I created a function to return FireBase data.
So, when there is a change or i...
In my dilemma to publish my application I am facing some problems.
I'm making the front separated from the back. The frontend is in vuejs and the backend in Laravel (being only an API)
On the server it looks like this:
public_html...
I'm creating a simple application and need to import some js and specific css files on a particular page, but how do you do that? In my template (Login.vue) I tried
<script>
require('./assets/js/pages/forms.js');
</script>
a...
I'm passing% object_to% to a component and within this component I try to access past values:
<orders-list :orders="items"></orders-list>
Component array
<template>
<div>
<b-form-select
v-mode...
I was consuming data from an API using XHR and it was working very well, but there were some changes in the design and there was a need to use Vue. I tried to make the same requests using Axios and soon after the Vue Resource but in both I was n...
How to allow or prevent a user from accessing a particular page? Let's say the user is not allowed to access the finanças page. Where do I report the access permissions on this page? Remember that these permissions will be set to localSto...