This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
52 lines (46 loc) · 1.6 KB
/
main.ts
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
46
47
48
49
50
51
52
/**
* Welcome to Clovuer
* The comments in each files will guide you through your very cool journey
* discovering what Vue can do.
*/
import Vue from 'vue'
import App from './App.vue'
/**
* registerServiceWorker works as a worker for your Vue app.
* Import the file if you want your website works as a PWA (Progressive Web App).
* Check more [here](https://en.wikipedia.org/wiki/Progressive_web_application)
*/
//import './registerServiceWorker'
import 'jquery'
import 'popper.js'
/**
* Bootstrap is important! Clovuer shipped with bootstrap out of the box.
* Don't like bootstrap? Prefer lightweight small [Skeleton](http://getskeleton.com)? Remove the line below.
*/
import 'bootstrap'
/**
* You're using Bootstrap? Then you will like Bootswatch.
* Bootswatch is a theming framework for Bootstrap, enabling a set of theme works as a replacement.
*
* `litera` is the name of the theme. Change the theme's name according to
* your theme preference.
* You can check more [here](https://bootswatch.com/).
* > Note: Some Clovuer component will not work properly without Bootswatch.
*/
import 'bootswatch/dist/litera/bootstrap.min.css'
/**
* Lines below enables vue-router and vuex store.
* Vue router act as a routing point for your SPA (Single Page Application) Vue.
* Vuex store act as a storing point for reusable variables inside your application.
* Vue i18n act as an international translation for your application.
*/
import router from './router'
import store from './store'
import i18n from './i18n'
Vue.config.productionTip = false;
new Vue({
router,
store,
i18n,
render: h => h(App)
}).$mount('#app');