chore: set seed for faker manually

This commit is contained in:
Dmitriy Pleshevskiy 2023-02-01 08:41:27 +03:00
parent 165ac3349d
commit 841977b02e
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,6 @@
import { createApp } from "vue";
import { createPinia } from "pinia";
import { faker } from "@faker-js/faker";
import App from "./App.vue";
import router from "./pages/router";
@ -13,6 +14,8 @@ import {
BaseTable,
} from "./shared/uikit";
faker.seed(10);
const pinia = createPinia();
const app = createApp(App);