We use in combination the framework Vue and the language Typescript. The team is completed with Tailwind. Here is an example:
...
language | typescript |
---|
...
https://apiida.atlassian.net/wiki/spaces/AACP/pages/8161755137/Coding+Guidelines#Vue
For storage we use Pinia.
Code Block | ||
---|---|---|
| ||
import { defineStore } from 'pinia'; import Plan from '../types/configuration/Plan'; const planStore = defineStore({ id: 'plan', state: () => ({ plans: [] as Plan[], }), }); export default planStore; |
...