change back-end to node js

This commit is contained in:
Amir Mohamadi
2020-11-14 12:37:59 +03:30
parent d23635b165
commit 56b295b75d
220 changed files with 13704 additions and 30781 deletions
+15
View File
@@ -0,0 +1,15 @@
import Vue from 'vue'
import header from '../components/header'
import footer_global from '../components/footer_global'
import footer_homePage from '../components/footer_homePage'
import logo from '../components/icons/logo'
import hero from '../components/hero'
import customersCommunication from '../components/customersCommunication'
Vue.component('site-header', header)
Vue.component('site-footer', footer_global)
Vue.component('home-footer', footer_homePage)
Vue.component('logo', logo)
Vue.component('hero', hero)
Vue.component('customersCommunication', customersCommunication)