使用vue cli创建一个webpack工程
加入vue-
router然后使用路由引入一个新的组件。这时路由和链接是这样写的
const
router = new Vue
Router({
mode: 'history',
base: __dirname,
routes: [
{
path: '/first',
component: firstCom
}
]
})
Try this!
1、npm run dev查看没有问题
2、npm run build打包
3、起一个服务(例如:
1