mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
import { createLocalVue } from '@vue/test-utils'
|
|
import { BootstrapVue, IconsPlugin } from 'bootstrap-vue'
|
|
import Vuex from 'vuex'
|
|
import { ValidationProvider, ValidationObserver, extend } from 'vee-validate'
|
|
import * as rules from 'vee-validate/dist/rules'
|
|
|
|
import { messages } from 'vee-validate/dist/locale/en.json'
|
|
import RegeneratorRuntime from 'regenerator-runtime'
|
|
import SideBar from '@/components/SidebarPlugin'
|
|
import VueQrcode from 'vue-qrcode'
|
|
|
|
import VueMoment from 'vue-moment'
|
|
|
|
import clickOutside from '@/directives/click-ouside.js'
|
|
import { focus } from 'vue-focus'
|
|
|
|
global.localVue = createLocalVue()
|
|
|
|
Object.keys(rules).forEach((rule) => {
|
|
extend(rule, {
|
|
...rules[rule], // copies rule configuration
|
|
message: messages[rule], // assign message
|
|
})
|
|
})
|
|
|
|
global.localVue.use(BootstrapVue)
|
|
global.localVue.use(Vuex)
|
|
global.localVue.use(IconsPlugin)
|
|
global.localVue.use(RegeneratorRuntime)
|
|
global.localVue.use(SideBar)
|
|
global.localVue.use(VueQrcode)
|
|
global.localVue.use(VueMoment)
|
|
global.localVue.component('validation-provider', ValidationProvider)
|
|
global.localVue.component('validation-observer', ValidationObserver)
|
|
global.localVue.directive('click-outside', clickOutside)
|
|
global.localVue.directive('focus', focus)
|