forked from robotframework/robotframework.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
45 lines (35 loc) · 1.14 KB
/
Copy pathmain.js
File metadata and controls
45 lines (35 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
/* eslint-disable no-new */
// for IE11 support (https://bootstrap-vue.js.org/docs/#browsers-support)
import 'babel-polyfill'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
import VueRouter from 'vue-router'
import Vue from 'vue'
import App from './App'
import VueAnalytics from 'vue-analytics'
import AppHeader from '@/components/AppHeader'
import AppFooter from '@/components/AppFooter'
import NavigationVertical from '@/components/NavigationVertical'
import BootstrapVue from 'bootstrap-vue'
Vue.use(BootstrapVue)
Vue.use(VueRouter)
/* if (/robotframework.org/.test(window.location.href)) {
Vue.use(VueAnalytics, {
id: ['UA-106835747-2']
})
} */
require('@/assets/css/main.css')
require('@/assets/css/pygments.css')
Vue.config.productionTip = false
Vue.component('app-header', AppHeader)
Vue.component('navigation-vertical', NavigationVertical)
Vue.component('app-footer', AppFooter)
new Vue({
el: '#app',
template: '<App/>',
components: {
App
}
})