Skip to content

Tag: vue.js

Keycloak with nuxt-auth module

I’m using this auth-module with Keycloak. My configuration in nuxt.config.js: The connection is OK. When I click on the “connect” button, I am redirected to my Keycloak environment. Once authenticated by Keycloak, I am redirected to my nuxt.js application. However, the problem is that my sto…

Vue js application object syntax

I just started to learn the vue.js and came across this syntax. I want to know what this syntax is called. Can anyone explain if data and mounted are properties of object or methods because never seen this type of syntax of object literal in js. Usually they have : between value and key. Answer It’s a s…

Vue – apply transition to menu element

I have this scss code in my vue app. I’m trying to make a smooth transition from left for a menu when the isVisible property is set to true but I’m not able to apply the transition I’ve defined and the menu will instantly appear. I’ve done a reserach here on SO and I’ve found som…