hedera-web/src/boot/state.js

15 lines
292 B
JavaScript

export default async ({ app, Vue }) => {
Vue.prototype.$imageBase = '//verdnatura.es/vn-image-data'
let state = Vue.observable({
userId: 1437,
userName: null,
title: null,
subtitle: null,
search: null,
rightDrawerOpen: true
})
Vue.prototype.$state = state
}