mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 22:39:18 +01:00
* Updates prettier ignore * Updates prettier ignore * Updates formatting * Fixes tests * Fixes tests
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
import { type App } from "vue";
|
|
import { createPinia } from "pinia";
|
|
|
|
export const install = (app: App) => {
|
|
const pinia = createPinia();
|
|
app.use(pinia);
|
|
};
|