♻️ (store) use a store to store readme and files

This commit is contained in:
2021-03-24 21:23:23 +01:00
parent 165cfb96e7
commit e199c68d68
18 changed files with 202 additions and 229 deletions

View File

@@ -1,5 +1,6 @@
import '@/registerServiceWorker'
import { createPinia } from 'pinia'
import App from './App.vue'
import { createApp } from 'vue'
import { createI18n } from 'vue-i18n'
@@ -14,4 +15,5 @@ const i18n = createI18n({
createApp(App)
.use(router)
.use(i18n)
.use(createPinia())
.mount('#app')