HB's Thoughts

I try to think really hard.

Tag - Vue

11/28/2024

Simple Vue plugin for geo location Link to the article

When I write a plugin, I think of it as a standalone piece of code that has its own logic and is independent of where it will be used. This is not entirely true, of course, but when designing a plugin, I always start from this idea. After all, every system has its own logic and architecture that must be followed - especially for outgoing data.


Competence: Geek
11/26/2024

Vue Router & Main file Link to the article

When starting a new Vue project, I use the Quick Start section of the Vue website. Then, I make a few small changes before adding the project to the Source Control bank.


Competence: Pro
7/3/2024

Log info with Web Workers from Vue 3 to the server Link to the article

Web Workers are small, powerful scripts that run in the browser's background. And because they don't interfere with the rendering of your application, you can load them with various tasks to perform.


Competence: Geek
3/18/2024

Vue emits with parameters Link to the article

Passing events in Vue from a component back to the one that calls it is done with emits. The emits can also be done with Pinia or another library for state management, but this will be for another article.


Competence: Elementary
Tags: Vue
2/27/2024

One entry point for multiple sites Link to the article

We have an application that represents a microsite, and when you load it, you see a login page. Our clients provide it to their users. After a user logs in, data related to the client they belong to and the permissions assigned by our client are loaded.


Competence: Pro