index.js 560 Bytes
Newer Older
1
import '@babel/polyfill';
2 3
import dva from 'dva';
import 'moment/locale/zh-cn';
afc163's avatar
afc163 committed
4
import FastClick from 'fastclick';
偏右's avatar
偏右 committed
5
import './rollbar';
陈帅's avatar
陈帅 committed
6
import onError from './error';
nikogu's avatar
nikogu committed
7
// import browserHistory from 'history/createBrowserHistory';
8 9 10
import './index.less';
// 1. Initialize
const app = dva({
nikogu's avatar
nikogu committed
11
  // history: browserHistory(),
陈帅's avatar
陈帅 committed
12
  onError,
13 14 15 16 17
});

// 2. Plugins
// app.use({});

WhatAKitty's avatar
WhatAKitty committed
18
// 3. Register global model
19
app.model(require('./models/global').default);
20 21

// 4. Router
22
app.router(require('./router').default);
23 24 25

// 5. Start
app.start('#root');
afc163's avatar
afc163 committed
26
FastClick.attach(document.body);