You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
724 B
HTML
29 lines
724 B
HTML
<!-- HTML generated using hilite.me -->
|
|
<div style="background: #f5f5f5; overflow:auto;width:auto;border:solid gray;border-width:0px;padding:1.6em;"><pre style="margin: 0; line-height: 125%">
|
|
import Vue from "vue";
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
import Scrollspy from 'vue2-scrollspy';
|
|
|
|
import BootstrapVue from 'bootstrap-vue'
|
|
import VueYoutube from 'vue-youtube'
|
|
import VueParticles from 'vue-particles'
|
|
|
|
var VueScrollTo = require('vue-scrollto');
|
|
|
|
Vue.use(VueParticles)
|
|
Vue.use(VueYoutube)
|
|
Vue.use(VueScrollTo)
|
|
|
|
Vue.use(BootstrapVue);
|
|
|
|
Vue.use(Scrollspy);
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
router,
|
|
render: h => h(App)
|
|
}).$mount("#app");
|
|
|
|
|
|
</div> |