Notice
Recent Posts
Recent Comments
Tags
- 404에러페이지
- 강제이동
- 하드 윈도우 복사
- 바코드 스캔하기
- 맥 오라클설치
- asp.net Select
- XSS방어
- asp.net core Select
- php 캐쉬제거
- SSD 복사
- jquery 바코드
- javascript 유효성체크
- ASP.Net Core 404
- Mac Oracle
- 파일업로드 체크
- jquery 바코드생성
- ViewBag
- javascript 바코드 생성
- ViewData
- 하드 마이그레이션
- 파일업로드 유효성체크
- asp.net dropdownlist
- TempData
- 바코드 생성하기
- django 엑셀불러오기
- javascript 바코드스캔
- XSS PHP
- javascript redirection
- 말줄임표시
- 타임피커
웹개발자의 기지개
[Vue.js] router 에서 url 파라미터 전달하기 본문
[ router 설치 ]
npm install vue-router
< router 설정하기 >
[ /router/index.js ]
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
31
32
33
34
|
import { createWebHashHistory, createRouter, createWebHistory } from "vue-router";
const routes = [
{
path: "/",
name: "main",
component: () => import("../components/main.vue"),
},
{
path: "/swiper",
name: "swiper",
component: () => import("../components/swiper.vue"),
},
{
path: "/noticeList",
name: "noticeList",
component: () => import("../components/noticeList.vue"),
},
{
path: "/noticeView",
name: "noticeView",
component: () => import("../components/noticeView.vue"),
}
];
const router = createRouter({
history: createWebHistory(),
routes,
});
export default router;
|
cs |
[ App.vue ]
1
2
3
4
5
6
7
8
9
10
11
|
<template>
<router-view :key='$route.fullPath'></router-view>
</template>
<script>
export default {
name: 'App',
components: {
}
}
</script>
|
cs |
<router-view :key='$route.fullPath'></router-view>
위의 소스는 현재페이지 다시 로딩이나, 같은 디렉토리상의 router-link 이동시에 정상적으로 동작하도록 해준다.
[ main.js ]
1
2
3
4
5
6
7
8
|
import { createApp } from 'vue'
import App from './App.vue'
// router
import router from "./router";
createApp(App).use(router).mount('#app')
|
cs |
use(router) 하여 router 연결시킨다.
이번에는 router 를 이용하여 url 파라미터 전달하는 방식을 알아보자.
(1) $route.params
https://도메인/search/hello/20
[ router 부분 ]
(2) $route.query
https://도메인/search?text=hello&size=30
? 하고 보통의 Get 방식으로 파라미터를 전달하는 방식의 경우이다.
[ router 부분 ]
개발인생님의 포스팅글 참고하였습니다.
https://hello-bryan.tistory.com/274
'javascript > Vue.js' 카테고리의 다른 글
[Vue.js] 줄바꿈 nl2br 기능 넣기 (0) | 2023.10.18 |
---|---|
[Vue.js] 환경 변수 설정하기 (vue.config.js) (0) | 2023.10.13 |
[Vue.js] CORS 에러 문제 해결하기 - proxy 설정하기 (1) | 2023.10.06 |
[Vue.js] router-link 페이지 이동시 정상 작동되지 않을때 (0) | 2023.10.06 |
[Vue.js] Vue 실습해보기 (설치,실행, 프로젝트 생성) (0) | 2023.09.28 |
Comments