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 |
Tags
- javascript #localstorage #stringify #parse
- sesstionstorage
- PersistentVolumeClaim
- v-combobox
- vuejs #pinia #vuetify3
- CKEditor4
- mixedcontent
- react
- PersistentVolume
- 인터넷 #클라이언트 #서버 #포트 #ipadress #domainname
- 맥 #나스 #SMA
- kubernetes
- localstorage
- vue3
- postman
- 라우터 #NAT #포트 #포트포워딩 #유동고정아이피 #DHCP
- nextjs
- vuejs
- Yarn
- vworld
- OpenLayers
- vuetify3
- MongoDB
- basepath
- JavaScript
- javascript #컴파일 #인터프리터
- browserstorage
- vue #vue-router
- github action #tistory
- MPA
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