Remove un-used Vue files + Create Fruits directory & Fruit details pages

This commit is contained in:
2020-12-03 19:27:09 +01:00
parent b82b9db99a
commit dc3a764aa2
9 changed files with 41 additions and 69 deletions

View File

@@ -1,12 +1,12 @@
import Vue from 'vue';
import App from './App.vue';
import router from './router';
import store from './store';
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
Vue.config.productionTip = false;
new Vue({
router,
store,
render: (h) => h(App),
}).$mount('#app');
render: h => h(App)
}).$mount("#app");