1.0.42 ā€¢ Published 5 years ago

vue-wp-json v1.0.42

Weekly downloads
43
License
MIT
Repository
github
Last release
5 years ago

vue-wp-json

šŸ’« Wordpress REST API plugin for Vue.js with out-of-box routing and data handling šŸ’«

Installation

A. Vue.js

1. Go to your app's main directory and run:

npm install vue-wp-json

or

yarn add vue-wp-json

2. Go to your app's main.jsĀ /Ā main.ts file, import the module catalog and register it:

import Vue from 'vue'
import vueWpJson from 'vue-wp-json'

Vue.use(vueWpJson, {
  config: {
    url: 'your-wordpress-url.com/',
    lang: 'en', // Your site's default language. It'll be added to html lang attribute.
    menus: [
      "first-menu-slug",
      "second-menu-slug"
      // There provide your menus' slug, if you have only one menu, provide it as a string. If you do not have any menu, set to false or just delete this key
    ]
  },
  store,
  router // Injecting VueX Store and Router is obligatory
})

If you would like to set proper meta tags automatically for Pages/Posts, all you need to do is to install vue-meta-info and register it as a plugin, for example in your main.js/ts

import Vue from 'vue'
import MetaInfo from 'vue-meta-info'

Vue.use(MetaInfo)

B. Nuxt.js (Coming soon)

For Nuxt.js we have developed a dedicated module that is available here: nuxt-wp-json

C. Vue Storefront

For Vue Storefront we have developed a dedicated module that is available here: vsf-wp-json

Usage

Pages

All you need to do to create new Page's route in your app is to create it in Wordpress Admin in Pages tab. It will automatiaclly be available under /page/<:page_slug> route.

Posts

The process is the same as above. You just need to create and publish new post in Wordpress Admin at Posts tab. It will automatiaclly be available under /post/<:post_slug> route.

Media

To be written.

Menus

To be able to use WordPress Menus in your app, you have to install additional plugin in your WordPress - WP-REST-API V2 Menus plugin. It extends native Wordpress REST API by adding a new endpoint with menus at /wp-json/menus/v1/menus/. After you have added the plugin vue-wp-json will automatically detect and store your menus at:

store.state.wp_rest_content.menus[YOUR_MENU_SLUG]
this.$store.state.wp_rest_content.menus[YOUR_MENU_SLUG]

Advanced Usage

More information about additional features available with PRO version of module will be available here: https://vuejs.shop/modules/vue-wp-json-pro

Additional modules (Coming soon)

Free Extensions

Yoast SEO Extension (Coming soon)

https://github.com/new-fantastic/vue-wp-json-yoast

qTranslate Extension (Coming soon)

https://github.com/new-fantastic/vue-wp-json-qtranslate-x

PRO Extensions

Advanced Custom Fields Extension (Coming soon)

https://vuejs.shop/modules/vue-wp-json-acf

DIVI Page Builder Extension (planned for Fall 2019)

https://vuejs.shop/modules/vue-wp-json-divi

1.0.42

5 years ago

1.0.41

5 years ago

1.0.40

5 years ago

1.0.39

5 years ago

1.0.38

5 years ago

1.0.37

5 years ago

1.0.36

5 years ago

1.0.35

5 years ago

1.0.34

5 years ago

1.0.33

5 years ago

1.0.32

5 years ago

1.0.31

5 years ago

1.0.30

5 years ago

1.0.29

5 years ago

1.0.28

5 years ago

1.0.27

5 years ago

1.0.26

5 years ago

1.0.25

5 years ago

1.0.24

5 years ago

1.0.23

5 years ago

1.0.22

5 years ago

1.0.21

5 years ago

1.0.20

5 years ago

1.0.19

5 years ago

1.0.18

5 years ago

1.0.17

5 years ago

1.0.16

5 years ago

1.0.15

5 years ago

1.0.14

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago