chore: migrate to composition API and auth0-spa

This commit is contained in:
2020-01-21 15:51:51 +01:00
parent 565a3aa66e
commit e6c87e2f46
44 changed files with 2489 additions and 1585 deletions
+15
View File
@@ -0,0 +1,15 @@
<template>
<div>
<slot />
</div>
</template>
<script>
import { getDarkMode } from '../../utils/localStorage'
export default {
setup(props, context) {
context.root.$vuetify.theme.dark = getDarkMode()
}
}
</script>