dbelyaeff / cogear-plugin-pages-json

Exports all pages data into ./src/pages.json after build.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cogear.JS plugin Pages.JSON

Simply generates pages.json file in the source folder with all parsed pages data structure.

May be usefull for implementing in site javascript to creating menus of for async data load with Vue/React.

Installation

Go to the site folder and install plugin with command:

yarn add cogear-plugin-pages-json
# or 
npm install cogear-plugin-pages-json

Plugin will loads up automatically.

Usage

Add your own usage implementation on app.js (provided by default) or any other script you'll provide.

Listing app.js:

import pages from './pages.json'

new Vue({
	el: "#menu"
	data(){
		return {
			pages
		}
	}
})

About

Exports all pages data into ./src/pages.json after build.


Languages

Language:JavaScript 100.0%