stubbed out new shopping list

This commit is contained in:
smilerz
2021-09-30 14:56:59 -05:00
parent a140813a67
commit 17cedf17b5
24 changed files with 302 additions and 17 deletions

View File

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