chore: set seed for faker manually
This commit is contained in:
parent
165ac3349d
commit
841977b02e
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue