Skip to content

Report a problem:

Problems can be reported via Microsoft Teams in your team channel within the "IT - Codey" team.

Please include the following information:

Report type:
Docs problem report a bug instead →
Path:
/latest/docs/core/
Message:

DESCRIBE THE PROBLEM BEFORE SUBMITTING TO CODEY

Getting Started

The core package will provide a set of general functionalities to support the setup and development needs of our Vue 3 applications.

The packages consists of 3 modules:

  • Composables: containing all vue composables that are upholding the definition of a vue composable.
  • Functions: Stateless functions that help distribute logic across projects
  • Modules: JS Modules with or without state that can be used in any context and do not rely on vue lifecycle hooks.

Depending on what you need you can import it as followed:

ts
// Composables
import { useHelloWorld } from "@xerius/codey-core/composables";

// Functions
import { isBelgianIban } from "@xerius/codey-core/functions";

// Modules
import { registerI18nMessageLoader } from "@xerius/codey-core/modules/i18n";

INFO

Modules are exported on a deeper level to keep a clear overview in what context something is being imported.

Report a problem:

Problems can be reported via Microsoft Teams in your team channel within the "IT - Codey" team.

Please include the following information:

Report type:
Docs problem report a bug instead →
Path:
/latest/docs/core/
Message:

DESCRIBE THE PROBLEM BEFORE SUBMITTING TO CODEY

Last updated: