0
0
Fork 0
hedera-front/src/boot/state.js

21 lines
395 B
JavaScript

export default async ({ app, Vue }) => {
Vue.prototype.$imageBase = '//verdnatura.es/vn-image-data'
let state = Vue.observable({
user: {
loggedIn: false
},
layout: null,
title: null,
subtitle: null,
useRightDrawer: false,
rightDrawerOpen: true,
catalogConfig: {
agencyModeFk: 2,
addressFk: 1823
}
})
Vue.prototype.$state = state
}