Skip to content

Instantly share code, notes, and snippets.

@eliezerfot123
Created April 16, 2020 02:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eliezerfot123/c45d2e80d1163bcaa20c16adea874390 to your computer and use it in GitHub Desktop.
Save eliezerfot123/c45d2e80d1163bcaa20c16adea874390 to your computer and use it in GitHub Desktop.
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