Created
April 16, 2020 02:17
-
-
Save eliezerfot123/c45d2e80d1163bcaa20c16adea874390 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import './plugins/bootstrap-vue' | |
import App from './App.vue' | |
import router from './router' | |
import { | |
BootstrapVue, | |
IconsPlugin | |
} from 'bootstrap-vue' | |
import 'bootstrap/dist/css/bootstrap.css' | |
import 'bootstrap-vue/dist/bootstrap-vue.css' | |
import './assets/css/style.css' | |
/* animate.css*/ | |
import VAnimateCss from 'v-animate-css'; | |
/* fontawesome */ | |
import { | |
library | |
} from '@fortawesome/fontawesome-svg-core' | |
import { | |
faUserSecret | |
} from '@fortawesome/free-solid-svg-icons' | |
import { | |
FontAwesomeIcon | |
} from '@fortawesome/vue-fontawesome' | |
Vue.component('font-awesome-icon', FontAwesomeIcon) | |
Vue.config.productionTip = false | |
/* Fin fontawesome */ | |
/* hoverintent */ | |
import 'hoverintent' | |
/* fin hoverintent */ | |
/* jquery */ | |
/*import JQuery from 'jquery' */ | |
import JQuery from 'jquery' | |
import './assets/js/jquery.easing/jquery.easing.min.js' | |
import './assets/js/main.js' | |
/* fin jquery */ | |
/* owl */ | |
import 'owl.carousel/dist/assets/owl.carousel.css'; | |
import 'owl.carousel'; | |
/* fin owl */ | |
/* superfish */ | |
import 'superfish' | |
/* fin superfish */ | |
/*venobox */ | |
import 'venobox' | |
import 'v-wow' | |
/* */ | |
Vue.use( | |
BootstrapVue, | |
IconsPlugin, | |
VAnimateCss, | |
jquery | |
) | |
Vue.config.productionTip = false | |
new Vue({ | |
router, | |
render: function (h) { return h(App) } | |
}).$mount('#app') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment