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

View file

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