shubhra14
shubhra14
Hi, Thank you for replying. I have asked this question in RealWorld repo and am awaiting a response. I have been able to make wp+vue work before, including pagination, but...
This is how I have done it for CPT single posts: 1. Duplicate Single.vue, say SingleMovie.vue `name: 'SingleMovie',` ``` return { request: { type: 'movie', ** ({ slug: route.params.slugs.split('/').filter(s =>...
You should install Vue devtools browser extension and have a look if routing is working as expected.
Duplicate Posts.vue. routes.js ``` import Movies from '@/components/Movies' { path: paths.postsPage('movies'), (Object.assign(route.params, { page: pageFromPath(route.path) })) } ``` Create the CPT php file as well.
The computed property is undefined. Might be some issue in Fotografen.vue
I'd highly recommend buying [this course](https://www.udemy.com/course/vuejs-2-the-complete-guide/). It covers all the nitty gritties and is easy to follow. Also, doesn't cost much (always some offer going on). There are some free...
https://github.com/bucky355/vue-wordpress/blob/d4143e7f68093e6380c29cc3ab5d5a1d72cab98a/src/components/Page.vue#L37-L39
I don't know how to solve the issue you are facing but I am using _WAMP_ to run wordpress and _npm run dev_ to run the javascipt file. It might...
Hi, sorry to trouble you again. A lot of my components would require a search feature. Any advice you can give on how to make "watch" work with this. Thank...