UNPKG

vuetify-admin

Version:

SPA admin framework for Vue.js running on top of REST APIs, built on Vuetify

27 lines (25 loc) 412 B
import { CHECK_AUTH, CHECK_ERROR, GET_NAME, GET_EMAIL, GET_PERMISSIONS, } from "../providers/auth/actions"; export default { namespaced: true, getters: { [GET_NAME]() { return null; }, [GET_EMAIL]() { return null; }, [GET_PERMISSIONS]() { return []; }, }, actions: { [CHECK_AUTH]: () => Promise.resolve(true), [CHECK_ERROR]: () => {}, }, };