初始化项目

This commit is contained in:
2018-10-28 09:20:02 +08:00
parent 42f99614f2
commit 16274fbbaa
82 changed files with 17340 additions and 0 deletions

18
src/component.js Normal file
View File

@@ -0,0 +1,18 @@
import Vue from 'vue'
import i_head from './components/i_head.vue'
import i_footer from './components/i_footer.vue'
import { swiper, swiperSlide } from 'vue-awesome-swiper'
class Component {
register() {
Vue.component("i_head", i_head);
Vue.component("i_footer", i_footer);
Vue.component("swiper", swiper);
Vue.component("swiperSlide", swiperSlide);
}
}
export const component = new Component();