forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
48 lines (41 loc) · 1.14 KB
/
index.js
File metadata and controls
48 lines (41 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
46
47
48
import install from './vue-install'
import start from './start'
import standaloneInstall from './standalone-install'
import * as theme from './features/theme'
import { version } from '../package.json'
import './features/body-classes'
import './features/polyfills'
import './features/error-handler'
import './features/fastclick'
import './features/addressbar-color'
import ActionSheet from './components/action-sheet/action-sheet'
import Dialog from './components/dialog/dialog'
import Toast from './components/toast/toast'
import AppFullscreen from './features/app-fullscreen'
import AppVisibility from './features/app-visibility'
import Cookies from './features/cookies'
import Platform from './features/platform'
import Events from './features/events'
import Loading from './components/loading/loading.js'
import Utils from './utils'
import { LocalStorage, SessionStorage } from './features/web-storage'
let Quasar = {
version,
install,
start,
theme,
ActionSheet,
Dialog,
AppFullscreen,
AppVisibility,
Cookies,
Platform,
Events,
Loading,
Toast,
Utils,
LocalStorage,
SessionStorage
}
standaloneInstall(Quasar)
export default Quasar