https://github.com/Tencent/kbone/tree/develop/examples/demo1
实例代码中有miniprogram.config.js中有段代码是配置router
router: {
index: [
'/test/aaa',
'/test/bbb',
]
}
入口文件中又配置了一次,代码如下,这两处配置有什么区别?是否需要相同?分别作用是什么?对应到小程序是哪块功能?
// webpack.mp.config.js
entry: {
index: path.resolve(__dirname, '../src/index/main.mp.js'),
},
// ../src/index/main.mp.js
const router = new Router({
mode: 'history', // 是否使用 history api
routes: [
{ path: '/test/aaa', component: AAA },
{ path: '/test/bbb', component: BBB }
]
})