일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- AWS
- devops
- tool
- ubuntu
- IntelliJ
- php
- Gradle
- Web Server
- redis
- it
- Git
- Spring
- ReactJS
- Spring Batch
- Spring Boot
- JVM
- java
- javascript
- db
- elasticsearch
- 요리
- MySQL
- jenkins
- linux
- Oracle
- springboot
- laravel
- 맛집
- Design Patterns
- jsp
Archives
- Today
- Total
아무거나
vuejs # 기호 url path에서 제거하기 본문
반응형
vuejs에서 페이지를 라우팅 할 때마다 url에 # 기호가 생기는데 상당히 거슬리다.
이럴경우 아래와 같이 설정하면 해결된다.
export default new Router({
mode: 'history', // mode값 추가
routes: [
{
path: '/',
name: 'HelloWorld',
component: HelloWorld
}
]
})
반응형
'Javascript & HTML & CSS > vuejs' 카테고리의 다른 글
Mocking 라이브러리 MSW (Mock Service Worker) 를 활용하자 (0) | 2022.11.14 |
---|---|
computed vs watch (0) | 2022.08.03 |
[vuejs] Vuex VS Eventbus (0) | 2022.08.02 |
vuejs를 선택한 이유 (0) | 2019.10.08 |
Comments