v-simple-cms
v-simple-cms
is a library that allows the easy manipulation and organiztion of JSON like objects. With the help of simple configuration templates it allows creating complicated forms to manage and export data. In its core v-simple-cms
uses v-editor
which allows to load, edit, extend, convert and export yaml and json files in the browser.
Build and publish
This package uses rollup.js
in order to bundle the components to es5 and ssr builds.
In case you need to re-build the package and push it to npm:
npm run r:build
npm publish
Installation
npm i v-simple-cms
Documentation and Examples
Changelog
- 1.0.9 - Minor fixes
- 1.1.0 - Support for Vuetify's TreeShake
- 1.1.5 - Minor fixes
- 1.1.6 -
v-editor's
New Prop!enableExportExtention
(type: Boolean, default: false). When set to true the key extension field at export is enabled. - 1.1.10 - types (/assets/types.ts) and treeshake components (/assets/treeshake.ts) are availabe. Instead of exporting all of the Vuetify components that are needed to be registered when using treeshake
treeshake.ts
exports a list of directives and a list of components (as strings) that can be plugged in Vuetify's configuration:// nuxt.config.js import { components, directives } from "v-simple-cms/assets/treeshake" . . vuetify: { treeShake: { components, directives } . . }
- 1.1.1 -
v-simple-cms
new Prop!menuItems
(type: Array, default: []). Enables the extension ofv-simple-cms
's menu items. Check the documentation for the exact type that must be passed.