Code examples
We use in combination the framework Vue and the language Typescript. The team is completed with Tailwind. Here is an example:
For storage we use Pinia.
import { defineStore } from 'pinia';
import Plan from '../types/configuration/Plan';
const planStore = defineStore({
id: 'plan',
state: () => ({
plans: [] as Plan[],
}),
});
export default planStore;