diff --git a/src/main.ts b/src/main.ts index 90c3dfc..5827367 100644 --- a/src/main.ts +++ b/src/main.ts @@ -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);