ADD: Ajv for JSON schema testing

This commit is contained in:
Robert Kossessa
2024-01-23 01:17:24 +01:00
parent 594136afe5
commit 48a2889f34
3 changed files with 9 additions and 7 deletions

View File

@@ -8,6 +8,8 @@ import en from './lang/en.json'
import App from './App.vue'
import Ajv from 'ajv'
// Create a new store instance
const store = createStore({
state() {
@@ -26,4 +28,7 @@ const app = createApp(App)
app.use(i18n)
app.use(store)
app.provide('ajv', new Ajv())
app.mount('#app')