Try to use tailwind

This commit is contained in:
2022-02-04 16:34:16 +00:00
parent f7dfc7b455
commit d825379a01
9 changed files with 78 additions and 136 deletions

View File

@ -1,17 +1,13 @@
import { createApp } from 'vue'
import App from './App.vue'
import './index.css'
import router from './router/routes.js'
import { store, key } from './store/index.js'
import vuetify from './plugins/vuetify'
import { loadFonts } from './plugins/webfontloader'
import { SET_CURRENT_ACCOUNT, SET_CURRENT_BUDGET } from './store/action-types'
loadFonts()
const app = createApp(App)
app.use(router)
app.use(store, key)
app.use(vuetify)
app.mount('#app')
router.beforeEach(async (to, from, next) => {