无论在浏览器输入什么url,都只显示这个界面,我要怎么打开项目
vue是组件化,单页面开发,只有一个页面,当然打不开其他的。
如果想看你其他的位置,都是利用组件,调用组件到页面上使用即可。
import Integral from '@/components/Integral' Vue.use(Router) export default new Router({ routes: [ { path:'/', redirect: '/index' }, { path: '/profile', //公司简介 name: 'Profile', component: Profile,
路由器文件中配置url
本身是有的
@像风一样自由~~~: 你这没有问题,再加个组件页面,输入路径就可以了