You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
607 B
23 lines
607 B
// === DEFAULT / CUSTOM STYLE ===
|
|
// WARNING! always comment out ONE of the two require() calls below.
|
|
// 1. use next line to activate CUSTOM STYLE (./src/themes)
|
|
// require(`./themes/app.${__THEME}.styl`)
|
|
// 2. or, use next line to activate DEFAULT QUASAR STYLE
|
|
require(`quasar/dist/quasar.${__THEME}.css`)
|
|
// ==============================
|
|
|
|
import Vue from 'vue'
|
|
import Quasar from 'quasar'
|
|
import router from './router'
|
|
|
|
Vue.use(Quasar) // Install Quasar Framework
|
|
|
|
Quasar.start(() => {
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: '#q-app',
|
|
router,
|
|
render: h => h(require('./App'))
|
|
})
|
|
})
|