라우트
[NUXT.JS/VUE.JS] 시작하기(3) - Dynamic Routes
pages 폴더에 posts폴더를 만들고, post.vue를 posts폴더에 옮겨놓자 그리고 _id.vue로 이름 변경 그안의 exprot default - data result로 내보낼 값을 설정한다 id 값과 보여질 title, content부분 그다음 Route에서 matching 시켜줄 코드를 작성 id: this.$route.params.id 동적 route에 관한 설명은 https://ko.nuxtjs.org/guide/routing/ nuxtjs.org Nuxt.js official website ko.nuxtjs.org computed:{ post(){ return this.posts.find(post=>post.id===this.id) } } 들어온 값의 id즉 balut, whereIs..