(전재) vue 경로 뒤에 제거 \ # 번호

소개: vue 프로젝트 에서 페이지 를 열 면 뒤의 경로 테이프 \ # 번호 예 를 들 어 http://192.168.1.187:8082/#/rejectionManagement
면접 을 볼 때 많은 면접 관 들 이 경로 뒤의 \ # 어떻게 제거 하 는 지 물 어 봅 니 다. 사실은 간단 합 니 다. 속성 mode: 'history' 만 필요 합 니 다.
 
import Vue from 'vue'
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'
import city from '@/components/city'
Vue.use(Router)

export default new Router({
  routes: [
    {
      path: '/',
      name: 'HelloWorld',
      component: HelloWorld
    },
    {
      path:'/city',
      name:'city',
      component:city
    }
  ],
  mode:'history'   //  # 
})

 
다음으로 전송:https://www.cnblogs.com/shenxinpeter/p/11114115.html

좋은 웹페이지 즐겨찾기