markdown editor

This commit is contained in:
vabene1111
2024-03-02 10:15:39 +01:00
parent 76eecedfb5
commit e0f7ce5de9
6 changed files with 182 additions and 54 deletions

View File

@@ -13,9 +13,9 @@
<v-main>
<v-container class="pa-0 ma-0 mb-2">
<router-view></router-view>
</v-container>
<router-view></router-view>
</v-main>
<v-bottom-navigation grow>

View File

@@ -4,7 +4,7 @@ import {createPinia} from 'pinia'
// @ts-ignore
import App from './Tandoor.vue'
import mavonEditor from 'mavon-editor'
import 'vite/modulepreload-polyfill';
import vuetify from "@/vuetify";
import ShoppingListPage from "@/pages/ShoppingListPage.vue";
@@ -36,5 +36,6 @@ app.use(createPinia())
app.use(vuetify)
app.use(router)
app.use(luxonPlugin)
app.use(mavonEditor) // TODO only use on pages that need it
app.mount('#app')