mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 20:28:46 -05:00
9 lines
153 B
JavaScript
9 lines
153 B
JavaScript
import Vue from 'vue'
|
|
import App from './ImportResponseView.vue'
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
render: h => h(App),
|
|
}).$mount('#app')
|