Skip to content
Advertisement

Tag: vue.js

Nuxt.js with Typeform causes me to force reload page

I am making my own personal webdesign website but I can’t wrap my head around this problem. How it happens: When I navigate from any page to my contact-page (where the Typeform is), the Typeform is simply not showing. When I reload the contact-page itself, it works as it is expected. I am loading the Typeform script this way: contact.vue

How to include vue app inside another vue app?

I’m currently requested to generate widget that will be included in different customers web sites. Let’s say somthing like: There is 2 constraintes: The use of iframe is forbidden The customers website could be done in whatever thecnology (PHP, React, ANgular, Vue.js, JQuery,…) As the requested widget should be interactive, I wanted to develop it using javascript framwork (I thought

Form body in a POST ending up as URL params?

Our stack: Vue.js frontend using vuetify component lib custom python middleware rest api using flask + tornado matomo running externally and connected to the frontend using vues plugin system.(https://github.com/AmazingDreams/vue-matomo) We recently added matamo to our site and very very rarely we’ve noticed 4 incidents out of thousands of users where the username/password which is submitted via POST request to our

How to disable a vuejs router-link?

I have a single-page app that i’ve created using vue, and the nav links are all done using router-link tags. There are a couple of items in the nav that my boss wants to have in the nav but disabled so that people can get a glimpse of some features that will be coming soon. However I can’t figure out

How to execute a function when all components are mounted

I’m using VueJS with the Vue Router and a js uniform module to modify form elements like select, checkboxes, etc to wrap these elements in a new element to improve the way we can style them. How can I efficiently execute this module after I changed route and my components are mounted? I could manually initialize the module in the

Style Binding makes app no show up anymore in Vue

What I’m trying to do is to make small 20px x 20px boxes of different colors in Vue. But, whenever I try to do :style='{ background-color: color.text }’ (color is an object in the data with property text), it just breaks the app and it shows up with nothing. Sceenshot without :style='{ background-color: color.text }’ Screenshot of inspector with :style='{

Advertisement