1.0.6 • Published 7 years ago
cogear-plugin-pages-json v1.0.6
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-jsonPlugin 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
}
}
})