This commit is contained in:
vabene1111
2021-09-13 12:39:29 +02:00
parent c7be37d4b8
commit 4fbf080e2f
6 changed files with 149 additions and 38 deletions

View File

@@ -0,0 +1,10 @@
import Vue from 'vue'
import App from './RecipeEditView'
import i18n from '@/i18n'
Vue.config.productionTip = false
new Vue({
i18n,
render: h => h(App),
}).$mount('#app')