index.js
688 Bytes
/**
* Created by TaoHuang on 2017/4/18.
*/
const step1 = r => require.ensure([], () => r(require('./step1')), 'product.create');
const step2 = r => require.ensure([], () => r(require('./step2')), 'product.create');
const step3 = r => require.ensure([], () => r(require('./step3')), 'product.create');
export default [{
path: 'step1.html',
name: 'step1',
component: step1,
meta: {
pageName: '类目选择',
}
}, {
path: 'step2.html',
name: 'step2',
component: step2,
meta: {
pageName: '基础信息',
}
}, {
path: 'step3.html',
name: 'step3',
component: step3,
meta: {
pageName: '网销信息',
}
}];