forked from juan/hedera-web
21 lines
395 B
JavaScript
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
|
|
}
|