Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- vue3
- react
- vue #vue-router
- PersistentVolumeClaim
- CKEditor4
- MongoDB
- OpenLayers
- vuejs
- basepath
- Yarn
- vuetify3
- browserstorage
- github action #tistory
- nextjs
- mixedcontent
- localstorage
- sesstionstorage
- 맥 #나스 #SMA
- 라우터 #NAT #포트 #포트포워딩 #유동고정아이피 #DHCP
- v-combobox
- JavaScript
- vuejs #pinia #vuetify3
- javascript #localstorage #stringify #parse
- vworld
- javascript #컴파일 #인터프리터
- postman
- 인터넷 #클라이언트 #서버 #포트 #ipadress #domainname
- MPA
- kubernetes
- PersistentVolume
Archives
- Today
- Total
목록vue #vue-router (1)
月亮
vue-router를 이용해서 defaultLayout, 페이지 레이아웃 구성하기
전제조건 : vue3, vue-router 프로젝트 생성 1. 컴포넌트 생성 // src/views/Home.vue Home Go To About Go To Profile // src/views/About.vue About Go To Home Go To Profile // path: src/views/Profile.vue Hello, this my profile page Go To Home 2. router.js 생성 // path: src/router/routes.ts import { RouteRecordRaw } from 'vue-router'; const routes: Array = [ { path: '/', name: 'Home', component: () => import(/* webpackCh..
vue.js
2023. 4. 6. 00:26